summaryrefslogtreecommitdiff
path: root/public.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-08-16 15:30:35 +0400
committerAndrew Dolgov <[email protected]>2012-08-16 15:30:49 +0400
commit0d421af86fdfe270e7396f308cf53f3b908e3d74 (patch)
treea8a497d6a3f28ab030b8e232bd7a0057512c417c /public.php
parent7e18f8e710d3b5af211be0a658d863a00d10bd67 (diff)
split authentication to separate modules
Diffstat (limited to 'public.php')
-rw-r--r--public.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/public.php b/public.php
index 675a9e352..a17fa5959 100644
--- a/public.php
+++ b/public.php
@@ -38,13 +38,6 @@
ob_start("ob_gzhandler");
}
- function __autoload($class) {
- $file = "classes/".strtolower(basename($class)).".php";
- if (file_exists($file)) {
- require $file;
- }
- }
-
$method = $_REQUEST["op"];
$handler = new Public_Handler($link, $_REQUEST);