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 gettext.patch for Gettext related Bug #53251

Patch version 2010-11-07 11:10 UTC

Return to Bug #53251 | Download this patch
This patch is obsolete

Obsoleted by patches:

Patch Revisions:

Developer: jeanseb@au-fil-du.net

Index: ext/gettext/gettext.c
===================================================================
--- ext/gettext/gettext.c	(révision 305149)
+++ ext/gettext/gettext.c	(copie de travail)
@@ -264,11 +264,11 @@
 		if (!VCWD_REALPATH(dir, dir_name)) {
 			RETURN_FALSE;
 		}
-	} else if (!VCWD_GETCWD(dir_name, MAXPATHLEN)) {
-		RETURN_FALSE;
+    	retval = bindtextdomain(domain, dir_name);
+	} else {
+	    retval = bindtextdomain(domain, NULL);
 	}
 
-	retval = bindtextdomain(domain, dir_name);
 
 	RETURN_STRING(retval, 1);
 }
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 08:01:30 2024 UTC