summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorSimon2011-04-15 12:07:51 +0200
committerSimon2011-04-15 12:07:51 +0200
commitf5131f031e3e340b2dec11f827cadf614a72baae (patch)
treeb2693b461e27dd10b0daec184dae67cc57a1089b /application
parentResources debug (diff)
downloadpbs2-f5131f031e3e340b2dec11f827cadf614a72baae.tar.gz
pbs2-f5131f031e3e340b2dec11f827cadf614a72baae.tar.xz
pbs2-f5131f031e3e340b2dec11f827cadf614a72baae.zip
Content-length von KCL korrigiert
Diffstat (limited to 'application')
-rw-r--r--application/controllers/ResourceController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/controllers/ResourceController.php b/application/controllers/ResourceController.php
index 4db1034..eb0b642 100644
--- a/application/controllers/ResourceController.php
+++ b/application/controllers/ResourceController.php
@@ -179,7 +179,7 @@ class ResourceController extends Zend_Controller_Action
$result = "alpha=" . $this->_request->getParam('alpha') . " file=http://".$_SERVER['HTTP_HOST']."/resource/getconfig/alpha/".$this->_request->getParam('alpha')."/file/default.tgz ".$bme->getKclappend();
}
- header("Content-Length: ".(count($result)+1));
+ header("Content-Length: ".(strlen($result)+1));
echo $result;