function biblio_update_6026 in Bibliography Module 6
Same name and namespace in other branches
- 6.2 biblio.install \biblio_update_6026()
- 7 biblio.install \biblio_update_6026()
- 7.2 biblio.install \biblio_update_6026()
File
- ./
biblio.install, line 1825 - Install file for biblio module
Code
function biblio_update_6026() {
$result = array();
// move custom block titles stored in variable "biblio_block_title" to the block table if the title has not already been overriden
$custom_title = variable_get('biblio_block_title', '');
if (!empty($custom_title)) {
$db_result = db_query("SELECT bid,title FROM {blocks} b where module='biblio' ");
while ($block = db_fetch_object($db_result)) {
if (empty($block->title)) {
$block->title = $custom_title;
$result[] = update_sql("UPDATE {blocks} SET title='" . $block->title . "' WHERE bid=" . $block->bid);
}
}
variable_del('biblio_block_title');
}
return $result;
}