diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-04-10 09:49:49 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-04-10 09:49:49 +0000 |
commit | c80481634f6a7e00b43eb63ed5b0c8a2feb959c8 (patch) | |
tree | 6e0ccd059e2520123bf9e8f45851f95b215f27d4 /modules/system | |
parent | 459d623467a23d8deda42620eb9be7992d5cfd24 (diff) | |
download | brdo-c80481634f6a7e00b43eb63ed5b0c8a2feb959c8.tar.gz brdo-c80481634f6a7e00b43eb63ed5b0c8a2feb959c8.tar.bz2 |
- Patch #606190 by dww, noahb, sun: improve handling of database schema updates in update manager workflow.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.updater.inc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/system/system.updater.inc b/modules/system/system.updater.inc index fa265d551..079fb0af1 100644 --- a/modules/system/system.updater.inc +++ b/modules/system/system.updater.inc @@ -81,10 +81,8 @@ class ModuleUpdater extends Updater implements DrupalUpdaterInterface { } public function postUpdateTasks() { - // @todo: If there are schema updates. - return array( - l(t('Run database updates for !project', array('!project' => $this->title)), 'update.php'), - ); + // We don't want to check for DB updates here, we do that once for all + // updated modules on the landing page. } } |