X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/00330cbc4af5bddfe88b437c2ac2b477dc9c80c9..d9b4512fae9de17f4bc9d77c7532db6ada9bf8c3:/WEB-INF/lib/common.lib.php diff --git a/WEB-INF/lib/common.lib.php b/WEB-INF/lib/common.lib.php index b419860c..81c870f8 100644 --- a/WEB-INF/lib/common.lib.php +++ b/WEB-INF/lib/common.lib.php @@ -122,7 +122,6 @@ function import($class_name) { die($mdb2->getMessage()); } - $mdb2->setOption('debug', true); $mdb2->setFetchMode(MDB2_FETCHMODE_ASSOC); $GLOBALS["_MDB2_CONNECTION"] = $mdb2; @@ -131,13 +130,6 @@ function import($class_name) { } - function closeConnection() { - if (isset($GLOBALS["_DB_CONNECTION"])) { - $GLOBALS["_DB_CONNECTION"]->close(); - unset($GLOBALS["_DB_CONNECTION"]); - } - } - // time_to_decimal converts a time string such as 1:15 to its decimal representation such as 1.25 or 1,25. function time_to_decimal($val) { global $user;