summaryrefslogtreecommitdiff
path: root/public.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-17 18:21:32 +0400
committerAndrew Dolgov <[email protected]>2013-04-17 18:21:32 +0400
commitd632b28cef93a159739e674a3573f197cc705c74 (patch)
tree6f18c80d2dba8b8235538e879b5e346c816c8593 /public.php
parent7440a7fe3c43644cc3a90fe94e7c23795f04eeba (diff)
fix some missing constructor parameters
Diffstat (limited to 'public.php')
-rw-r--r--public.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/public.php b/public.php
index 6ace943c4..2f5081957 100644
--- a/public.php
+++ b/public.php
@@ -43,7 +43,7 @@
if ($override) {
$handler = $override;
} else {
- $handler = new Handler_Public( $_REQUEST);
+ $handler = new Handler_Public(Db::get(), $_REQUEST);
}
if (implements_interface($handler, "IHandler") && $handler->before($method)) {