X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;f=wwwroot%2Fsmarty%2Flibs%2Fplugins%2Fshared.make_timestamp.php;h=b42eb11d85d1b6f0a5a2064d88f102d958dfd302;hb=71a598e9ace080c3a636a39cc110e1ed169a1a4e;hp=3f85439e14825da997936dc8feedb8383d2e4ed2;hpb=e034221efbc7970ec58be22d7517fd3c503dc903;p=mirrors%2FKyberia-bloodline.git diff --git a/wwwroot/smarty/libs/plugins/shared.make_timestamp.php b/wwwroot/smarty/libs/plugins/shared.make_timestamp.php index 3f85439..b42eb11 100644 --- a/wwwroot/smarty/libs/plugins/shared.make_timestamp.php +++ b/wwwroot/smarty/libs/plugins/shared.make_timestamp.php @@ -10,6 +10,7 @@ * Function: smarty_make_timestamp
* Purpose: used by other smarty functions to make a timestamp * from a string. + * @author Monte Ohrt * @param string * @return string */ @@ -20,14 +21,14 @@ function smarty_make_timestamp($string) $time = time(); } elseif (preg_match('/^\d{14}$/', $string)) { - // it is mysql timestamp format of YYYYMMDDHHMMSS? + // it is mysql timestamp format of YYYYMMDDHHMMSS? $time = mktime(substr($string, 8, 2),substr($string, 10, 2),substr($string, 12, 2), substr($string, 4, 2),substr($string, 6, 2),substr($string, 0, 4)); - + } elseif (is_numeric($string)) { // it is a numeric string, we handle it as timestamp $time = (int)$string; - + } else { // strtotime should handle it $time = strtotime($string);