Skip to content

Commit

Permalink
Just a robustness test
Browse files Browse the repository at this point in the history
  • Loading branch information
moodler committed Feb 8, 2005
1 parent 05049d1 commit c7a9e29
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions lib/blocklib.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ function block_instance($blockname, $instance = NULL) {
function block_load_class($blockname) {
global $CFG;

if (empty($blockname)) {
return false;
}

include_once($CFG->dirroot.'/blocks/moodleblock.class.php');
$classname = 'block_'.$blockname;
include_once($CFG->dirroot.'/blocks/'.$blockname.'/block_'.$blockname.'.php');
Expand Down Expand Up @@ -663,7 +667,7 @@ function upgrade_blocks_db($continueto) {
if (modify_database($CFG->dirroot .'/blocks/db/'. $CFG->dbtype .'.sql')) {
$db->debug = false;
if (set_config('blocks_version', $blocks_version)) {
notify(get_string('databasesuccess'), 'green');
notify(get_string('databasesuccess'), 'notifysuccess');
notify(get_string('databaseupgradeblocks', '', $blocks_version));
print_continue($continueto);
exit;
Expand All @@ -686,7 +690,7 @@ function upgrade_blocks_db($continueto) {
if (blocks_upgrade($CFG->blocks_version)) {
$db->debug=false;
if (set_config('blocks_version', $blocks_version)) {
notify(get_string('databasesuccess'), 'green');
notify(get_string('databasesuccess'), 'notifysuccess');
notify(get_string('databaseupgradeblocks', '', $blocks_version));
print_continue($continueto);
exit;
Expand Down Expand Up @@ -838,7 +842,7 @@ function upgrade_blocks_plugins($continueto) {
if (! update_record('block', $block)) {
error('Could not update block '. $block->name .' record in block table!');
}
notify(get_string('blocksuccess', '', $blocktitle), 'green');
notify(get_string('blocksuccess', '', $blocktitle), 'notifysuccess');
echo '<hr />';
}
$updated_blocks = true;
Expand Down Expand Up @@ -870,7 +874,7 @@ function upgrade_blocks_plugins($continueto) {
if (!is_dir($fullblock .'/db/') || modify_database($fullblock .'/db/'. $CFG->dbtype .'.sql')) {
$db->debug = false;
if ($block->id = insert_record('block', $block)) {
notify(get_string('blocksuccess', '', $blocktitle), 'green');
notify(get_string('blocksuccess', '', $blocktitle), 'notifysuccess');
echo '<hr />';
} else {
error($block->name .' block could not be added to the block list!');
Expand Down

0 comments on commit c7a9e29

Please sign in to comment.