From: alex <bin...@li...> - 2001-09-05 03:52:29
|
alex Tue Sep 4 20:52:22 2001 EDT Modified files: /r2/binarycloud/base/core Lang.php Log: Making Debug available to private methods in Lang. Index: r2/binarycloud/base/core/Lang.php diff -u r2/binarycloud/base/core/Lang.php:1.4 r2/binarycloud/base/core/Lang.php:1.5 --- r2/binarycloud/base/core/Lang.php:1.4 Tue Jul 10 14:31:46 2001 +++ r2/binarycloud/base/core/Lang.php Tue Sep 4 20:52:22 2001 @@ -1,7 +1,7 @@ <?php // Header {{{ /******************************************************************************* - ** -File $Id: Lang.php,v 1.4 2001/07/10 21:31:46 alex Exp $ + ** -File $Id: Lang.php,v 1.5 2001/09/05 03:52:22 alex Exp $ ** -License LGPL (http://www.gnu.org/copyleft/lesser.html) ** -Copyright 2001, The Turing Studio, Inc. ** -Author nico galoppo, ni...@cr... @@ -350,6 +350,7 @@ function _set_charset_from_langs() { global $Sess; + global $Debug; global $gLangCharset; foreach ($this->langs as $lang) { @@ -407,6 +408,7 @@ function _set_currency_from_langs() { global $Sess; + global $Debug; global $gLangCurrencyName; global $gLangCurrencySymbol; @@ -505,6 +507,7 @@ function _set_datetime_from_langs() { global $Sess; + global $Debug; global $gLangDateSpec; global $gLangTimeSpec; |