summaryrefslogtreecommitdiff
path: root/public.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-17 16:23:15 +0400
committerAndrew Dolgov <[email protected]>2013-04-17 16:48:41 +0400
commit6322ac79a020ab584d412d782d62b2ee77d7c6cf (patch)
treeb2e64a140a3bc9d9ce649ee67f8a687b6511d9f4 /public.php
parentaca75cb5cb323535099c7aef46a78ea3cec082f2 (diff)
remove $link
Diffstat (limited to 'public.php')
-rw-r--r--public.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/public.php b/public.php
index ae6ae44b2..fa8ea29b8 100644
--- a/public.php
+++ b/public.php
@@ -31,7 +31,7 @@
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
- if (!init_plugins($link)) return;
+ if (!init_plugins()) return;
if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
ob_start("ob_gzhandler");
@@ -45,7 +45,7 @@
if ($override) {
$handler = $override;
} else {
- $handler = new Handler_Public($link, $_REQUEST);
+ $handler = new Handler_Public( $_REQUEST);
}
if (implements_interface($handler, "IHandler") && $handler->before($method)) {
@@ -62,5 +62,5 @@
print json_encode(array("error" => array("code" => 7)));
// We close the connection to database.
- db_close($link);
+ db_close();
?>