summaryrefslogtreecommitdiff
path: root/ext/date/tests/bug26090.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/tests/bug26090.phpt')
-rw-r--r--ext/date/tests/bug26090.phpt14
1 files changed, 0 insertions, 14 deletions
diff --git a/ext/date/tests/bug26090.phpt b/ext/date/tests/bug26090.phpt
deleted file mode 100644
index 03a90352cc..0000000000
--- a/ext/date/tests/bug26090.phpt
+++ /dev/null
@@ -1,14 +0,0 @@
---TEST--
-Bug #26090 (allow colons in time zone offset to strtotime())
---FILE--
-<?php
-putenv("TZ=America/New_York");
-$t = '2003-10-28 10:20:30-0800';
-echo date('Y-m-d H:i:s T', strtotime($t)) . "\n";
-
-$t = '2003-10-28 10:20:30-08:00';
-echo date('Y-m-d H:i:s T', strtotime($t)) . "\n";
-?>
---EXPECT--
-2003-10-28 13:20:30 EST
-2003-10-28 13:20:30 EST