From bf9f1bbd5e7c85ad1df1278e180ab2a1646b6bac Mon Sep 17 00:00:00 2001 From: Ankit Agarwal Date: Wed, 29 Feb 2012 14:06:12 +0800 Subject: [PATCH] MDL-28387 logs: Rearranging the log record for readability --- lib/db/log.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')), ); -- 2.43.0