system_update_1020

Definition

system_update_1020()
system/system.install, line 3481

Description

Change break tag back (was removed from head).

Code

<?php
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;
}
?>