diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-05-10 19:55:24 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-05-10 19:55:24 +0000 |
commit | 258c653f56ce7dd7dddcbe7c3a46c678dcb79b36 (patch) | |
tree | a30e00872d523d70b1b1ff901b7d7717cc9f3937 /modules/system/system.install | |
parent | 571013af8cac7f8c47bb8028495be2e0393d5150 (diff) | |
download | brdo-258c653f56ce7dd7dddcbe7c3a46c678dcb79b36.tar.gz brdo-258c653f56ce7dd7dddcbe7c3a46c678dcb79b36.tar.bz2 |
- Patch #141637 by merlinofchaos, gabor, et al: provide a site config form at the end of install to collect data, plus allow profiles to modify and add more.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 62e582d64..b1fda9b22 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3873,6 +3873,14 @@ function system_update_6013() { system_theme_data(); } +/** + * Record that the installer is done, so it is not + * possible to run the installer on upgraded sites. + */ +function system_update_6014() { + variable_set('install_task', 'done'); +} + /** * @} End of "defgroup updates-5.x-to-6.x" |