]> git.pld-linux.org Git - packages/php.git/blame - bug-50563.patch
- make it possible to coinstall phpXY-pdo-pgsql
[packages/php.git] / bug-50563.patch
CommitLineData
fe2476d8
ER
1https://bugs.php.net/bug.php?id=50563
2
3do 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.038261 seconds and 4 git commands to generate.