]> git.mjollnir.org Git - moodle.git/commitdiff
fix skodak's fix. add a } char to table name.
authorethem <ethem>
Sat, 5 Jul 2008 12:22:57 +0000 (12:22 +0000)
committerethem <ethem>
Sat, 5 Jul 2008 12:22:57 +0000 (12:22 +0000)
enrol/authorize/enrol.php

index ee824ba477a360a44075d7936d0bb5e71b1123ed..f7765d385ec768dae4af1a23552f169b8df620af 100755 (executable)
@@ -732,7 +732,7 @@ class enrolment_plugin_authorize
 
         $select = "(status=?) AND (timecreated<?)";
         $params = array(AN_STATUS_EXPIRE, AN_STATUS_AUTH, $timediff30);
-        if ($DB->execute("UPDATE {enrol_authorize SET status=? WHERE $select", $params)) {
+        if ($DB->execute("UPDATE {enrol_authorize} SET status=? WHERE $select", $params)) {
             mtrace("        pending orders to expire have updated");
         }