aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/admin/admin_styles.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-01-29 17:45:34 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-01-29 17:45:34 +0000
commitbb939454231a9281b5dbb3242606c5008c904ed6 (patch)
treef0652a64b53cbae93861f87c55988f08998dea76 /phpBB/admin/admin_styles.php
parentbcd4581f7762de33512833cff82638831d3e68e5 (diff)
downloadforums-bb939454231a9281b5dbb3242606c5008c904ed6.tar
forums-bb939454231a9281b5dbb3242606c5008c904ed6.tar.gz
forums-bb939454231a9281b5dbb3242606c5008c904ed6.tar.bz2
forums-bb939454231a9281b5dbb3242606c5008c904ed6.tar.xz
forums-bb939454231a9281b5dbb3242606c5008c904ed6.zip
Move logging functions, change name, add mode + lang var case changes
git-svn-id: file:///svn/phpbb/trunk@3401 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin/admin_styles.php')
-rw-r--r--phpBB/admin/admin_styles.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/admin/admin_styles.php b/phpBB/admin/admin_styles.php
index f2d1b052a3..0035c9f7fe 100644
--- a/phpBB/admin/admin_styles.php
+++ b/phpBB/admin/admin_styles.php
@@ -163,7 +163,7 @@ switch ($mode)
@chmod($phpbb_root_path . 'templates/cache/' . $tplroot . '/' . $tplname . '.html.' . $phpEx, 0644);
- add_admin_log('log_template_edit', $tplname, $tplroot);
+ add_log('admin', 'log_template_edit', $tplname, $tplroot);
exit;
}
@@ -266,7 +266,7 @@ switch ($mode)
WHERE theme_id = $theme_id";
$db->sql_query($sql);
- add_admin_log('log_theme_edit', $theme_name);
+ add_log('admin', 'log_theme_edit', $theme_name);
message_die(MESSAGE, $user->lang['Success_theme_update']);
}