diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-27 18:03:55 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-27 18:03:55 +0000 |
commit | 75dc0e86378882727ff8f9100de6456580424343 (patch) | |
tree | d08a0e66722dca6ca384804d7b7f7d1fe2e25b4f /phpBB/includes/functions_admin.php | |
parent | acf0c0ddebf13b6075b6dac81c7675dd04d4a692 (diff) | |
download | forums-75dc0e86378882727ff8f9100de6456580424343.tar forums-75dc0e86378882727ff8f9100de6456580424343.tar.gz forums-75dc0e86378882727ff8f9100de6456580424343.tar.bz2 forums-75dc0e86378882727ff8f9100de6456580424343.tar.xz forums-75dc0e86378882727ff8f9100de6456580424343.zip |
do not output notices on viewing the log if log language variables changed their information between versions...
git-svn-id: file:///svn/phpbb/trunk@7962 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_admin.php')
-rw-r--r-- | phpBB/includes/functions_admin.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index 7074f21f25..2c3eb61dce 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -2423,7 +2423,8 @@ function view_log($mode, &$log, &$log_count, $limit = 0, $offset = 0, $forum_id if (isset($user->lang[$row['log_operation']])) { - $log[$i]['action'] = vsprintf($log[$i]['action'], $log_data_ary); + // We supress the warning about inappropiate number of passed parameters here due to possible changes within LOG strings from one version to another. + $log[$i]['action'] = @vsprintf($log[$i]['action'], $log_data_ary); // If within the admin panel we do not censor text out if (defined('IN_ADMIN')) |