From a1df41ca2f59666c4d9a99a14ec70368d158a4e9 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Fri, 10 Jun 2005 06:31:13 +0000 Subject: [PATCH] r261: Got language system to work with showhistory.php --- showhistory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/showhistory.php b/showhistory.php index 55f47c0..5bb05b6 100644 --- a/showhistory.php +++ b/showhistory.php @@ -56,7 +56,7 @@ $logs_fetch = $db->query(" ); while ($log = $db->fetch_array($logs_fetch)) { - $log['formatted'] = call_user_func_array('phrase', array_merge(array($log['language']), unserialize($log['arguments']))); + $log['formatted'] = call_user_func_array(array($bugsys->lang, 'p'), array_merge(array($log['language']), unserialize($log['arguments']))); $log['date'] = datelike('standard', $log['dateline']); $log['user'] = construct_user_display($log); -- 2.22.5