From 9fedc2b84173af985baa34b6a9c54c3621966264 Mon Sep 17 00:00:00 2001 From: Remie Bolte Date: Fri, 23 Sep 2011 12:36:39 +0000 Subject: [PATCH 1/2] Fixed issue #736 - removed Content-Length header from index.php --- index.php | 1 - 1 file changed, 1 deletion(-) diff --git a/index.php b/index.php index 72b254b2f3..88989ee9d6 100644 --- a/index.php +++ b/index.php @@ -24,7 +24,6 @@ function renderer($mode='frontend'){ $output = renderer($renderer)->display(getCurrentPage()); - header(sprintf('Content-Length: %d', strlen($output))); echo $output; exit; From a7b4e40ab917b092a2b06b4ee5a182531b202c1f Mon Sep 17 00:00:00 2001 From: Frank Groeneveld Date: Mon, 10 Oct 2011 20:35:08 +0200 Subject: [PATCH 2/2] Fix typo --- symphony/lib/toolkit/class.event.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symphony/lib/toolkit/class.event.php b/symphony/lib/toolkit/class.event.php index bfd2157a38..20e2d1ec05 100755 --- a/symphony/lib/toolkit/class.event.php +++ b/symphony/lib/toolkit/class.event.php @@ -136,7 +136,7 @@ public static function documentation() { /** * Priority determines Event importance and when it should be executed. * The default priority for an event is `Event::kNORMAL`, with `Event::kHIGH` and - * `Event::kLOW` being the other available options. Events execution is `Event::HIGH` + * `Event::kLOW` being the other available options. Events execution is `Event::kHIGH` * to `Event::kNORMAL` to `Event::kLOW`. If there are more than one event at the * same priority level, they are sorted alphabetically by event handle and executed * in that order for that priority.