From e430092edaa83b1f282a8b073d0fd6b0b8e33cce Mon Sep 17 00:00:00 2001 From: "Michael Kaufmann (d00p)" Date: Thu, 22 Jul 2010 07:01:47 +0000 Subject: [PATCH] - fixed lang-variable in getRedirectCodes() --- lib/functions/output/function.RedirectCode.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions/output/function.RedirectCode.php b/lib/functions/output/function.RedirectCode.php index a5759515..9d4dc467 100644 --- a/lib/functions/output/function.RedirectCode.php +++ b/lib/functions/output/function.RedirectCode.php @@ -44,7 +44,7 @@ function getRedirectCodesArray() */ function getRedirectCodes() { - global $db; + global $db, $lng; $sql = "SELECT * FROM `".TABLE_PANEL_REDIRECTCODES."` WHERE `enabled` = '1' ORDER BY `id` ASC"; $result = $db->query($sql);