From 8d5745fa9291996e0548207e1150e44382874973 Mon Sep 17 00:00:00 2001 From: Rossiani Wijaya Date: Mon, 28 May 2012 11:58:37 +0800 Subject: [PATCH] MDL-32766: course view section log: fixed typo for course_sections table Conflicts: version.php --- lib/db/log.php | 2 +- version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/db/log.php b/lib/db/log.php index 16d1f433c3b..f0475f62870 100644 --- a/lib/db/log.php +++ b/lib/db/log.php @@ -38,7 +38,7 @@ global $DB; // TODO: this is a hack, we should really do something with the SQL $logs = array( 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'=>'view section', 'mtable'=>'course_section', 'field'=>'COALESCE(name, section)'), + array('module'=>'course', 'action'=>'view section', 'mtable'=>'course_sections', 'field'=>'COALESCE(name, section)'), array('module'=>'course', 'action'=>'update', 'mtable'=>'course', 'field'=>'fullname'), array('module'=>'course', 'action'=>'enrol', 'mtable'=>'course', 'field'=>'fullname'), // there should be some way to store user id of the enrolled user! array('module'=>'course', 'action'=>'unenrol', 'mtable'=>'course', 'field'=>'fullname'), // there should be some way to store user id of the enrolled user! diff --git a/version.php b/version.php index 9a4c454f1f9..7eb259adf65 100644 --- a/version.php +++ b/version.php @@ -30,7 +30,7 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2012052500.01; // YYYYMMDD = weekly release date of this DEV branch +$version = 2012052500.02; // YYYYMMDD = weekly release date of this DEV branch // RR = release increments - 00 in DEV branches // .XX = incremental changes -- 2.17.1