function panels_update_5210 in Panels 6.3
Same name and namespace in other branches
- 5.2 panels.install \panels_update_5210()
File
- ./
panels.install, line 668
Code
function panels_update_5210() {
if (!empty($GLOBALS['SKIP_PANELS_UPDATES'])) {
return array();
}
$ret = array();
$ret[] = update_sql("UPDATE {system} SET weight = 10 WHERE name = 'panels'");
return $ret;
}