php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #53251
Patch fix_broken_bindtextdomain revision 2010-11-26 17:09 UTC by greno at verizon dot net
Patch Test_if_NULL_or_empty revision 2010-11-24 22:38 UTC by pajoye@php.net
Patch gettext.patch revision 2010-11-07 11:49 UTC by jeanseb at au-fil-du dot net
revision 2010-11-07 11:10 UTC by jeanseb at au-fil-du dot net

Patch fix_broken_bindtextdomain for Gettext related Bug #53251

Patch version 2010-11-26 17:09 UTC

Return to Bug #53251 | Download this patch
Patch Revisions:

Developer: greno@verizon.net

--- php-src/branches/PHP_5_3/ext/gettext/gettext.c	2010-11-26 12:00:29.000000000 -0500
+++ working/branches/PHP_5_3/ext/gettext/gettext.c	2010-11-26 12:03:48.000000000 -0500
@@ -260,14 +260,6 @@
 		RETURN_FALSE;
 	}
 
-	if (dir[0] != '\0' && strcmp(dir, "0")) {
-		if (!VCWD_REALPATH(dir, dir_name)) {
-			RETURN_FALSE;
-		}
-	} else if (!VCWD_GETCWD(dir_name, MAXPATHLEN)) {
-		RETURN_FALSE;
-	}
-
 	retval = bindtextdomain(domain, dir_name);
 
 	RETURN_STRING(retval, 1);
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 10:01:28 2024 UTC