Index: trunk/phase3/includes/GlobalFunctions.php |
— | — | @@ -2188,7 +2188,7 @@ |
2189 | 2189 | } elseif ( preg_match( '/^-?\d{1,13}$/D', $ts ) ) { |
2190 | 2190 | # TS_UNIX |
2191 | 2191 | $uts = $ts; |
2192 | | - $strtime = "@$ts"; // Undocumented? |
| 2192 | + $strtime = "@$ts"; // http://php.net/manual/en/datetime.formats.compound.php |
2193 | 2193 | } elseif ( preg_match( '/^\d{2}-\d{2}-\d{4} \d{2}:\d{2}:\d{2}.\d{6}$/', $ts ) ) { |
2194 | 2194 | # TS_ORACLE // session altered to DD-MM-YYYY HH24:MI:SS.FF6 |
2195 | 2195 | $strtime = preg_replace( '/(\d\d)\.(\d\d)\.(\d\d)(\.(\d+))?/', "$1:$2:$3", |