Commit:    a721fe2b224f1e1d6fca31183778018147628a10
Author:    Gustavo Lopes <glo...@nebm.ist.utl.pt>         Tue, 29 Jan 2013 
17:50:15 +0100
Parents:   ee6522bebf5e5b4652d01da6e6eaec4cf59051b2
Branches:  PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=a721fe2b224f1e1d6fca31183778018147628a10

Log:
Fix zpp() call in intl/converter

Changed paths:
  M  ext/intl/converter/converter.c


Diff:
diff --git a/ext/intl/converter/converter.c b/ext/intl/converter/converter.c
index 6be8698..eeb596f 100644
--- a/ext/intl/converter/converter.c
+++ b/ext/intl/converter/converter.c
@@ -746,7 +746,7 @@ static PHP_METHOD(UConverter, convert) {
        int str_len, dest_len;
        zend_bool reverse = 0;
 
-       if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|b!",
+       if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|b",
                                  &str, &str_len, &reverse) == FAILURE) {
                return;
        }


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to