summaryrefslogtreecommitdiffstats
path: root/application/controllers
diff options
context:
space:
mode:
authorSimon2011-03-31 16:33:36 +0200
committerSimon2011-03-31 16:33:36 +0200
commit6fbd2a654067773df378efaa4283a4870073208b (patch)
tree9d12bccbe2b8f42e5ec00f4afe52751ce2bb7221 /application/controllers
parentFilter können nurnoch auf eigene BootMenu verweisen (diff)
downloadpbs2-6fbd2a654067773df378efaa4283a4870073208b.tar.gz
pbs2-6fbd2a654067773df378efaa4283a4870073208b.tar.xz
pbs2-6fbd2a654067773df378efaa4283a4870073208b.zip
Graph-Anzeige gefixxt
Diffstat (limited to 'application/controllers')
-rw-r--r--application/controllers/StatsController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/application/controllers/StatsController.php b/application/controllers/StatsController.php
index a54c528..8fc718e 100644
--- a/application/controllers/StatsController.php
+++ b/application/controllers/StatsController.php
@@ -15,6 +15,7 @@ class StatsController extends Zend_Controller_Action
if(isset($userIDsNamespace['groupID'])){
header("Content-Type: image/png");
+ header("Expires: 0");
$n = new Pbs_Graph();
$level = $this->_request->getParam('level');
@@ -22,8 +23,7 @@ class StatsController extends Zend_Controller_Action
$n->setHiglightLevel($level);
}
- $str = $n->graph($userIDsNamespace['groupID']);
- echo $str;
+ echo $n->graph($userIDsNamespace['groupID']);
}
}
}