MDL-37976 fixed missing global

This commit is contained in:
Marina Glancy
2013-02-12 12:53:47 +11:00
parent 0e6d8bc952
commit abc3a22f42
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -336,6 +336,7 @@ class format_legacy extends format_base {
* @return bool whether there were any changes to the options values
*/
public function update_course_format_options($data, $oldcourse = null) {
global $DB;
if ($oldcourse !== null) {
$data = (array)$data;
$oldcourse = (array)$oldcourse;
+1
View File
@@ -271,6 +271,7 @@ class format_topics extends format_base {
* @return bool whether there were any changes to the options values
*/
public function update_course_format_options($data, $oldcourse = null) {
global $DB;
if ($oldcourse !== null) {
$data = (array)$data;
$oldcourse = (array)$oldcourse;
+1
View File
@@ -276,6 +276,7 @@ class format_weeks extends format_base {
* @return bool whether there were any changes to the options values
*/
public function update_course_format_options($data, $oldcourse = null) {
global $DB;
if ($oldcourse !== null) {
$data = (array)$data;
$oldcourse = (array)$oldcourse;