New block upgrade functions must be called:

xmldb_block_BLOCKNAME_upgrade()

Part of MDL-6786, just for consistency.
This commit is contained in:
stronk7
2006-10-15 23:02:07 +00:00
parent 59359cde79
commit 670eea76db
+8 -10
View File
@@ -171,15 +171,13 @@ function blocks_name_allowed_in_format($name, $pageformat) {
$formats = block_method_result($name, 'applicable_formats');
$accept = NULL;
$depth = -1;
if (isset($formats)) {
foreach($formats as $format => $allowed) {
$thisformat = '^'.str_replace('*', '[^-]*', $format).'.*$';
if(ereg($thisformat, $pageformat)) {
if(($scount = substr_count($format, '-')) > $depth) {
$depth = $scount;
$accept = $allowed;
}
}
foreach($formats as $format => $allowed) {
$thisformat = '^'.str_replace('*', '[^-]*', $format).'.*$';
if(ereg($thisformat, $pageformat)) {
if(($scount = substr_count($format, '-')) > $depth) {
$depth = $scount;
$accept = $allowed;
}
}
}
if($accept === NULL) {
@@ -1167,7 +1165,7 @@ function upgrade_blocks_plugins($continueto) {
/// Run de old and new upgrade functions for the module
$oldupgrade_function = $block->name .'_upgrade';
$newupgrade_function = 'xmldb_' . $block->name .'_upgrade';
$newupgrade_function = 'xmldb_block_' . $block->name .'_upgrade';
/// First, the old function if exists
$oldupgrade_status = true;