diff options
author | Evan Prodromou <evan@status.net> | 2010-09-08 15:41:39 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-09-08 15:41:39 -0400 |
commit | e6c84dec1936a258be6f4d24a4d2e458ac6bbaff (patch) | |
tree | 12cc475ddaca73223639fac3b681aa18cccde5ac /lib | |
parent | c758b2b0005cd434ff679686b6e11df60a65e1cb (diff) |
Pragma was accidentally triggering some underwear-catapult-connected hardware
Diffstat (limited to 'lib')
-rw-r--r-- | lib/action.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/action.php b/lib/action.php index a2638993f..e50397514 100644 --- a/lib/action.php +++ b/lib/action.php @@ -1007,7 +1007,7 @@ class Action extends HTMLOutputter // lawsuit if ($this->isCacheable()) { header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' ); header( "Cache-Control: private, must-revalidate, max-age=0" ); - header( "Pragma: underwear-catapult"); + header( "Pragma:"); } } |