[Gnucash-changes] r14004 - htdocs/trunk - debugging.

Joshua Sled jsled at cvs.gnucash.org
Wed May 10 21:23:48 EDT 2006


Author: jsled
Date: 2006-05-10 21:23:48 -0400 (Wed, 10 May 2006)
New Revision: 14004
Trac: http://svn.gnucash.org/trac/changeset/14004

Modified:
   htdocs/trunk/lang.php
Log:
debugging.


Modified: htdocs/trunk/lang.php
===================================================================
--- htdocs/trunk/lang.php	2006-05-11 01:20:27 UTC (rev 14003)
+++ htdocs/trunk/lang.php	2006-05-11 01:23:48 UTC (rev 14004)
@@ -5,8 +5,9 @@
 if ($locale == "") { $locale = "en_US"; }
 putenv("LANG=$locale");
 putenv("LANGUAGE=$locale");
-setlocale(LC_ALL, $locale);
+$locale_res = setlocale(LC_ALL, $locale);
 $domain = "gnucash-htdocs";
-bindtextdomain($domain, $top_dir);
+$dir_res = bindtextdomain($domain, $top_dir);
 textdomain($domain);
+echo ("<!-- locale_res $locale_res , dir_res $dir_res -->\n");
 ?>



More information about the gnucash-changes mailing list