1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-10 00:27:45 +02:00

Fixes #771 - System Log preferences not being saved.

This commit is contained in:
Cameron
2014-10-14 16:23:16 -07:00
parent dc4a6c938f
commit 238864b66a
4 changed files with 18 additions and 13 deletions

View File

@@ -629,7 +629,7 @@ if ($dataToSave && !$promptPassword)
// Now see if we need to log anything. First check the options and class membership
// (Normally we would leave logging decision to the log class. But this one's a bit more complicated)
$user_logging_opts = array_flip(explode(',', varset($pref['user_audit_opts'], '')));
$user_logging_opts = e107::getConfig()->get('user_audit_opts');
$do_log = array();
$log_action = '';
if ($_uid)