diff options
author | Bill Marquette <billm@pfsense.org> | 2005-08-13 22:08:40 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2005-08-13 22:08:40 +0000 |
commit | a9f365fee633f9f567cd66d15b1dcd38b07b5556 (patch) | |
tree | 3e5f6f56726442ac22affc934f0334de3433a27e /usr/local/www | |
parent | 1ec7289b15c1671137b247baefb85fd7bb66ac71 (diff) | |
download | pfsense-a9f365fee633f9f567cd66d15b1dcd38b07b5556.zip pfsense-a9f365fee633f9f567cd66d15b1dcd38b07b5556.tar.gz |
Ticket #339: better fix, it's the nocache headers that are killing this in
https
Diffstat (limited to 'usr/local/www')
-rwxr-xr-x | usr/local/www/graph.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr/local/www/graph.php b/usr/local/www/graph.php index f8cec48..b24fe3f 100755 --- a/usr/local/www/graph.php +++ b/usr/local/www/graph.php @@ -30,8 +30,9 @@ POSSIBILITY OF SUCH DAMAGE. */ -/* require authentication - usually included in guiconfig.inc */ -require_once('auth.inc'); +/* Headers are evil, must omit them */ +$omit_nocacheheaders = true; +require_once('guiconfig.inc'); // VERSION 1.0.4 |