]> git.pld-linux.org Git - packages/php.git/blob - bug-50563.patch
- make it possible to coinstall phpXY-pdo-pgsql
[packages/php.git] / bug-50563.patch
1 https://bugs.php.net/bug.php?id=50563
2
3 do not throw warning as php 5.3.3 does not
4 --- php/php-src/branches/PHP_5_3/ext/standard/url.c     2010/06/16 18:45:54     300500
5 +++ php/php-src/branches/PHP_5_3/ext/standard/url.c     2010/06/16 18:56:24     300501
6 @@ -355,7 +355,7 @@
7  
8         resource = php_url_parse_ex(str, str_len);
9         if (resource == NULL) {
10 -               php_error_docref1(NULL TSRMLS_CC, str, E_WARNING, "Unable to parse URL");
11 +               /* @todo Find a method to determine why php_url_parse_ex() failed */
12                 RETURN_FALSE;
13         }
14  
This page took 0.027613 seconds and 3 git commands to generate.