summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-09-23 09:33:40 -0400
committerEvan Prodromou <evan@status.net>2009-09-23 09:33:40 -0400
commit42ba05de5fa9413ce0f383cfdafa7288e291ab17 (patch)
tree82918140c513d9951f88418c85387f5f05e32a93 /index.php
parentc01a5b8f2e37fe876507edfccc01126a117d9728 (diff)
revert output buffering (costly) for ETags (low priority)
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index fa94f0c75..362ab3cd3 100644
--- a/index.php
+++ b/index.php
@@ -233,7 +233,7 @@ function main()
try {
if ($action_obj->prepare($args)) {
- $action_obj->handleWrapper($args);
+ $action_obj->handle($args);
}
} catch (ClientException $cex) {
$cac = new ClientErrorAction($cex->getMessage(), $cex->getCode());