summaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
Diffstat (limited to 'api')
-rw-r--r--api/index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/api/index.php b/api/index.php
index c468823e1..732b7bd9a 100644
--- a/api/index.php
+++ b/api/index.php
@@ -55,7 +55,8 @@
} else /* if (method_exists($handler, 'index')) */ {
$handler->index($method);
}
- $handler->after();
+ // API isn't currently overriding Handler#after()
+ // $handler->after();
}
header("Api-Content-Length: " . ob_get_length());