From: moodler Date: Mon, 25 Oct 2004 15:25:58 +0000 (+0000) Subject: Fixed typo ... bug 2124 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=ccc62c6e42c7d82fca34fd04ab356d2d11c56d65;p=moodle.git Fixed typo ... bug 2124 --- diff --git a/lib/blocklib.php b/lib/blocklib.php index c72250e0f7..6bf732c3ef 100644 --- a/lib/blocklib.php +++ b/lib/blocklib.php @@ -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;