From f39b7a5699939610cf452eccb0b8d37dd5c4f7f4 Mon Sep 17 00:00:00 2001 From: Romain d'Alverny Date: Wed, 29 May 2013 22:47:11 +0000 Subject: Lang helpers small reorg. - moved several functions in i18n class: _e(), _t(), _d(), _h(), _lang_load() and _lang_return(). - kept shorthand helpers redirecting to it when needed. - updated doc for these functions. --- langs/lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'langs/lib.php') diff --git a/langs/lib.php b/langs/lib.php index 716404fd7..db1fc21f5 100644 --- a/langs/lib.php +++ b/langs/lib.php @@ -20,8 +20,8 @@ include '../langs.inc.php'; */ function _lang_diff($a, $b) { - $fa = _lang_return($a); - $fb = _lang_return($b); + $fa = i18n::_lang_return($a); + $fb = i18n::_lang_return($b); $ret = array( 'aCount' => count($fa), -- cgit v1.2.1