summaryrefslogtreecommitdiff
path: root/public.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-08-17 14:20:55 +0400
committerAndrew Dolgov <[email protected]>2012-08-17 14:22:33 +0400
commit369dbc19d6ae35c97a2306ae4821c7812e2f24b2 (patch)
treefff54920611300f99e0898874e0de04c99ac5586 /public.php
parent3d2c9f5adfdc51642143d9fecf31ee353735bb8e (diff)
rework class system to use subdirectories
add placeholder plugin/hook system
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 a17fa5959..bf13fdd58 100644
--- a/public.php
+++ b/public.php
@@ -40,7 +40,7 @@
$method = $_REQUEST["op"];
- $handler = new Public_Handler($link, $_REQUEST);
+ $handler = new Handler_Public($link, $_REQUEST);
if ($handler->before($method)) {
if ($method && method_exists($handler, $method)) {