Skip to content
Snippets Groups Projects
Commit c8048163 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #606190 by dww, noahb, sun: improve handling of database schema...

- Patch #606190 by dww, noahb, sun: improve handling of database schema updates in update manager workflow.
parent 459d6234
No related branches found
No related tags found
No related merge requests found
......@@ -81,10 +81,8 @@ public function postInstallTasks() {
}
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.
}
}
......
......@@ -154,7 +154,9 @@ function update_authorize_batch_copy_project($project, $updater_name, $local_url
}
_update_batch_create_message($context['results']['log'][$project], t('Installed %project_name successfully', array('%project_name' => $project)));
$context['results']['tasks'] += $tasks;
if (!empty($tasks)) {
$context['results']['tasks'] += $tasks;
}
// This particular operation is now complete, even though the batch might
// have other operations to perform.
......@@ -206,6 +208,10 @@ function update_authorize_update_batch_finished($success, $results) {
'type' => 'error',
);
}
// Since we're doing an update of existing code, always add a task for
// running update.php.
$results['tasks'][] = t('Your modules have been downloaded and updated.');
$results['tasks'][] = t('<a href="@update">Run database updates</a>', array('@update' => base_path() . 'update.php'));
// Set all these values into the SESSION so authorize.php can display them.
$_SESSION['authorize_results']['success'] = $success;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment