From 4965d8e99cec6b2777386c9c8d0edeaa241cf3f6 Mon Sep 17 00:00:00 2001 From: Pratik Joshi Date: Tue, 13 Aug 2013 18:28:51 +0530 Subject: [PATCH] CRM-13213 : updated joomla cms code for fetching UF locale --- CRM/Utils/System/Joomla.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/System/Joomla.php b/CRM/Utils/System/Joomla.php index bff2a134cf..4269731b53 100644 --- a/CRM/Utils/System/Joomla.php +++ b/CRM/Utils/System/Joomla.php @@ -564,7 +564,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { function getUFLocale() { if (defined('_JEXEC')) { $conf = JFactory::getConfig(); - $locale = $conf->getValue('config.language'); + $locale = $conf->get('language'); return str_replace('-', '_', $locale); } return NULL; -- 2.25.1