Updated to Smarty 2.6.26 (June 18th, 2009), we should update to Smarty 3.x (current...
[mirrors/Kyberia-bloodline.git] / wwwroot / smarty / libs / plugins / shared.make_timestamp.php
index 3f85439e14825da997936dc8feedb8383d2e4ed2..b42eb11d85d1b6f0a5a2064d88f102d958dfd302 100644 (file)
@@ -10,6 +10,7 @@
  * Function: smarty_make_timestamp<br>
  * Purpose:  used by other smarty functions to make a timestamp
  *           from a string.
+ * @author   Monte Ohrt <monte at ohrt dot com>
  * @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);
This page took 0.105852 seconds and 4 git commands to generate.