summaryrefslogtreecommitdiff
path: root/api/index.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-05-07 01:34:49 -0700
committerAndrew Dolgov <[email protected]>2013-05-07 01:34:49 -0700
commita4fd183b5853867a9293dba438512d8400e6b65e (patch)
tree9776db47df16c7daa91f7a0e2c257031be75d33e /api/index.php
parent75933cf00d4331fd27821af03cadbb2e7c83da79 (diff)
parent6f7798b6434f5ef6073447998c436901b507e3df (diff)
Merge pull request #180 from rlerdorf/master
Fix some bugs found by static analysis
Diffstat (limited to 'api/index.php')
-rw-r--r--api/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/index.php b/api/index.php
index 9f0d93f69..facdf82c5 100644
--- a/api/index.php
+++ b/api/index.php
@@ -57,7 +57,7 @@
$method = strtolower($_REQUEST["op"]);
- $handler = new API(Db::get(), $_REQUEST);
+ $handler = new API($_REQUEST);
if ($handler->before($method)) {
if ($method && method_exists($handler, $method)) {