From 9742f613e676dcec8eebaf5af565b7c278185335 Mon Sep 17 00:00:00 2001 From: skeeter Date: Mon, 18 Feb 2002 01:54:15 +0000 Subject: [PATCH] One more file needed to be changed over for the language table update. This is for the lang function. --- phpgwapi/inc/class.common.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.common.inc.php b/phpgwapi/inc/class.common.inc.php index 1867eaf6a5..7515f8933b 100644 --- a/phpgwapi/inc/class.common.inc.php +++ b/phpgwapi/inc/class.common.inc.php @@ -198,7 +198,7 @@ */ function getInstalledLanguages() { - $GLOBALS['phpgw']->db->query('select distinct lang from lang'); + $GLOBALS['phpgw']->db->query('select distinct lang from phpgw_lang'); while (@$GLOBALS['phpgw']->db->next_record()) { $installedLanguages[$GLOBALS['phpgw']->db->f('lang')] = $GLOBALS['phpgw']->db->f('lang');