]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/common.lib.php
Merge branch 'refactoring_test' - this is really a test.
[timetracker.git] / WEB-INF / lib / common.lib.php
index 167b95b25be07acae2f1fbf763e09647f8bcbe87..27c43de3f4a2dd745afc755b06f461a965c70cc8 100644 (file)
 // | https://www.anuko.com/time_tracker/credits.htm
 // +----------------------------------------------------------------------+
 
-       /**
-        * @return unknown
-        * @param file unknown
-        * @param version = "" unknown
-        * @desc Loads a class
-        */
-       function import( $class_name ) {
+// import() function loads a class.
+function import($class_name) {
            $libs = array(
                        dirname($_SERVER["SCRIPT_FILENAME"]),
                        LIBRARY_DIR
@@ -61,7 +56,7 @@
 
                print '<br><b>load_class: error loading file "'.$filename.'"</b>';
                die();
-       }
+}
 
        // The mu_sort function is used to sort a multi-dimensional array.
        // It looks like the code example is taken from the PHP manual http://ca2.php.net/manual/en/function.sort.php
@@ -163,11 +158,9 @@ function sec_to_time_fmt_hm($sec)
 
 function magic_quotes_off()
 {
-  // if (get_magic_quotes_gpc()) { // This check is now done before calling this function.
-    $_POST = array_map('stripslashes_deep', $_POST);
-    $_GET = array_map('stripslashes_deep', $_GET);
-    $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
-  // }
+  $_POST = array_map('stripslashes_deep', $_POST);
+  $_GET = array_map('stripslashes_deep', $_GET);
+  $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
 }
 
 // check_extension checks whether a required PHP extension is loaded and dies if not so.