You are here

function system_update_1020 in Drupal 5

Change break tag back (was removed from head).

Related topics

File

modules/system/system.install, line 3481

Code

function system_update_1020() {
  $ret = array();
  if (!variable_get('update_1020_ok', FALSE)) {
    $ret[] = update_sql("UPDATE {node_revisions} SET body = REPLACE(body, '<break>', '<!--break-->')");
  }
  variable_del('update_1020_ok');
  return $ret;
}