X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/60a7d2b7a9ba3f15874c359c0cba2ca97ff9eca8..448c3e07930dbf902c97c93f252a474cb0931e23:/WEB-INF/lib/common.lib.php diff --git a/WEB-INF/lib/common.lib.php b/WEB-INF/lib/common.lib.php index 43377103..0e9ff9e4 100644 --- a/WEB-INF/lib/common.lib.php +++ b/WEB-INF/lib/common.lib.php @@ -165,7 +165,7 @@ function check_extension($ext) // isTrue is a helper function to return correct false for older config.php values defined as a string 'false'. function isTrue($val) { - return ($val == false || $val === 'false') ? false : true; + return ($val === true); } // ttValidString is used to check user input to validate a string. @@ -226,7 +226,7 @@ function ttValidFloat($val, $emptyValid = false) return ($emptyValid ? true : false); global $user; - $decimal = $user->decimal_mark; + $decimal = $user->getDecimalMark(); if (!preg_match('/^-?[0-9'.$decimal.']+$/', $val)) return false; @@ -390,3 +390,11 @@ function ttStartsWith($string, $startString) $len = strlen($startString); return (substr($string, 0, $len) === $startString); } + +// ttDateToUserFormat converts a date from database format to user format. +function ttDateToUserFormat($date) +{ + global $user; + $o_date = new DateAndTime(DB_DATEFORMAT, $date); + return $o_date->toString($user->date_format); +}