system_update_6014

Definition

system_update_6014()
modules/system/system.install, line 1558

Description

Record that the installer is done, so it is not possible to run the installer on upgraded sites.

Code

<?php
function system_update_6014() {
  variable_set('install_task', 'done');

  return array(array('success' => TRUE, 'query' => "variable_set('install_task')"));
}
?>
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.