From: Ankit Agarwal Date: Wed, 29 Feb 2012 06:06:12 +0000 (+0800) Subject: MDL-28387 logs: Rearranging the log record for readability X-Git-Tag: v2.3.0-beta~1050^2 X-Git-Url: http://git.moodle.org/gw?p=moodle.git;a=commitdiff_plain;h=bf9f1bbd5e7c85ad1df1278e180ab2a1646b6bac;ds=sidebyside MDL-28387 logs: Rearranging the log record for readability --- diff --git a/lib/db/log.php b/lib/db/log.php index 4814f7d41c9..7549e34ec22 100644 --- a/lib/db/log.php +++ b/lib/db/log.php @@ -29,7 +29,6 @@ defined('MOODLE_INTERNAL') || die(); global $DB; // TODO: this is a hack, we should really do something with the SQL in SQL tables $logs = array( - array('module'=>'user', 'action'=>'view', 'mtable'=>'user', 'field'=>$DB->sql_concat('firstname', "' '" , 'lastname')), array('module'=>'course', 'action'=>'user report', 'mtable'=>'user', 'field'=>$DB->sql_concat('firstname', "' '" , 'lastname')), array('module'=>'course', 'action'=>'view', 'mtable'=>'course', 'field'=>'fullname'), array('module'=>'course', 'action'=>'update', 'mtable'=>'course', 'field'=>'fullname'), @@ -49,4 +48,5 @@ $logs = array( array('module'=>'group', 'action'=>'view', 'mtable'=>'groups', 'field'=>'name'), array('module'=>'tag', 'action'=>'update', 'mtable'=>'tag', 'field'=>'name'), array('module'=>'tag', 'action'=>'flag', 'mtable'=>'tag', 'field'=>'name'), + array('module'=>'user', 'action'=>'view', 'mtable'=>'user', 'field'=>$DB->sql_concat('firstname', "' '" , 'lastname')), );