]> git.mjollnir.org Git - moodle.git/commitdiff
whitespace fix
authorskodak <skodak>
Sat, 16 Aug 2008 19:49:23 +0000 (19:49 +0000)
committerskodak <skodak>
Sat, 16 Aug 2008 19:49:23 +0000 (19:49 +0000)
mod/assignment/db/upgrade.php
mod/assignment/lib.php

index c79a6afd95fe1352e0e30f2d66c8d5ef1770c482..cce1973c0f697ff3d7980dfc46a60110b5d65172 100644 (file)
@@ -49,7 +49,7 @@ function xmldb_assignment_upgrade($oldversion) {
                     JOIN {course_modules} cm ON (cm.module = m.id AND cm.instance = a.id)
                 ORDER BY a.course, s.assignment";
 
-        $count = $DB->count_records_sql("SELECT COUNT('x') $sqlfrom"); 
+        $count = $DB->count_records_sql("SELECT COUNT('x') $sqlfrom");
 
         if ($rs = $DB->get_recordset_sql("SELECT s.id, s.userid, s.teacher, s.assignment, a.course, cm.id AS cmid $sqlfrom")) {
 
index ecfae647fd5e626b3642b6621d61a90ad9628434..02ffc55490de253a932eafb8988430a8f71f6944 100644 (file)
@@ -1805,7 +1805,7 @@ class assignment_base {
 
             $fs = get_file_storage();
             $browser = get_file_browser();
-    
+
             if ($files = $fs->get_area_files($this->context->id, 'assignment_submission', $user->id, "timemodified", false)) {
                 $countfiles = count($files)." ".get_string("uploadedfiles", "assignment");
                 foreach ($files as $file) {
@@ -1962,11 +1962,11 @@ class mod_assignment_upload_file_form extends moodleform {
 
 /// OTHER STANDARD FUNCTIONS ////////////////////////////////////////////////////////
 
-/** 
+/**
  * Code to be executed when a module is installed
- */ 
+ */
 function assignment_install() {
-    return true; 
+    return true;
 }
 
 /**