summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2007-09-03 12:12:51 +0000
committerDerick Rethans <derick@php.net>2007-09-03 12:12:51 +0000
commit14df6eb97541666697622ffe115667edc2213496 (patch)
tree46de1cf0fd059a42326266310550645c0c56aebe
parentcf0e8798700a0aa80c3ffbc47329515ef17d23e6 (diff)
downloadphp-git-14df6eb97541666697622ffe115667edc2213496.tar.gz
- Ugh, fix this properly.
-rw-r--r--ext/date/php_date.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/date/php_date.c b/ext/date/php_date.c
index 53a7f56072..930cec6f1f 100644
--- a/ext/date/php_date.c
+++ b/ext/date/php_date.c
@@ -2316,7 +2316,7 @@ PHP_FUNCTION(timezone_transitions_get)
array_init(element);
add_ascii_assoc_long(element, "ts", tzobj->tz->trans[i]);
if (UG(unicode)) {
- add_assoc_unicode(element, "time", (UChar*) php_format_date(DATE_FORMAT_ISO8601, 13, tzobj->tz->trans[i], 0 TSRMLS_CC), 0);
+ add_ascii_assoc_unicode(element, "time", (UChar*) php_format_date(DATE_FORMAT_ISO8601, 13, tzobj->tz->trans[i], 0 TSRMLS_CC), 0);
} else {
add_assoc_string(element, "time", php_format_date(DATE_FORMAT_ISO8601, 13, tzobj->tz->trans[i], 0 TSRMLS_CC), 0);
}