소스 검색

Fix Spod Timestamp conversion

This fixed some PHP related Spod problems for me, i will ask franco to review this change.
frabbit 12 년 전
부모
커밋
dabd1e66fc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      std/php/_std/sys/db/Mysql.hx

+ 1 - 1
std/php/_std/sys/db/Mysql.hx

@@ -138,7 +138,7 @@ private class MysqlResultSet implements ResultSet {
 				return untyped __call__("intval", v);
 			case "real":
 				return untyped __call__("floatval", v);
-			case "datetime", "date":
+			case "datetime", "date", "timestamp":
 				return Date.fromString(v);
 			case "blob":
 				return haxe.io.Bytes.ofData(cast v);