]> git.mjollnir.org Git - moodle.git/commitdiff
Fixed typo ... bug 2124
authormoodler <moodler>
Mon, 25 Oct 2004 15:25:58 +0000 (15:25 +0000)
committermoodler <moodler>
Mon, 25 Oct 2004 15:25:58 +0000 (15:25 +0000)
lib/blocklib.php

index c72250e0f78aa39cb0fb03d1b5629c00ccc729ae..6bf732c3ef3a61f11080672130b41b7e4b69692a 100644 (file)
@@ -726,7 +726,7 @@ function upgrade_blocks_plugins($continueto) {
 
         if ( @is_dir($fullblock .'/db/')) {
             if ( @is_readable($fullblock .'/db/'. $CFG->dbtype .'.php')) {
-                include_once($fullblock .'/db'. /$CFG->dbtype .'.php');  // defines upgrading function
+                include_once($fullblock .'/db'. $CFG->dbtype .'.php');  // defines upgrading function
             } else {
                 $notices[] ='Block '. $blockname .': '. $fullblock .'/db/'. $CFG->dbtype .'.php was not readable';
                 continue;