From bccc250d8fbdb965ced86b8891b58d09d788f19d Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 23 Feb 2003 21:11:03 +0000 Subject: - Some fixes and improvements as suggested by Gary. --- update.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/update.php b/update.php index d180034da..588110df9 100644 --- a/update.php +++ b/update.php @@ -13,7 +13,7 @@ if (!get_cfg_var("safe_mode")) { // Define the various updates in an array("date : comment" => "function"); $mysql_updates = array( - "2001-10-10: first update after Drupal 3.0.0 release" => "update_1", + "2001-10-10: first update since Drupal 3.0.0 release" => "update_1", "2001-10-12" => "update_2", "2001-10-14" => "update_3", "2001-10-16" => "update_4", @@ -44,7 +44,7 @@ $mysql_updates = array( "2002-04-23" => "update_29", "2002-05-02" => "update_30", "2002-05-15" => "update_31", - "2002-06-22: first update after Drupal 4.0.0 release" => "update_32", + "2002-06-22: first update since Drupal 4.0.0 release" => "update_32", "2002-07-07" => "update_33", "2002-07-31" => "update_34", "2002-08-10" => "update_35", @@ -58,7 +58,7 @@ $mysql_updates = array( "2002-10-26" => "update_43", "2002-11-08" => "update_44", "2002-11-20" => "update_45", - "2002-12-10" => "update_46", + "2002-12-10: first update since Drupal 4.1.0 release" => "update_46", "2002-12-22" => "update_47", "2002-12-29" => "update_48", "2003-01-03" => "update_49", @@ -752,15 +752,16 @@ function update_page() { case "Update": // make sure we have updates to run. print "

Drupal database update

"; - print "» home
\n"; - print "» ". l("administer", "admin"). "
\n"; + print "» main page
\n"; + print "» administration pages
\n"; + // NOTE: we can't use l() here because the URL would point to 'update.php?q=admin'. if ($edit["start"] == -1) { print "No updates to perform."; } else { update_data($edit["start"]); } - print "
Updates were attempted. If you see no failures above, you may proceed happily to the ". l("admin pages", "admin"). "."; + print "
Updates were attempted. If you see no failures above, you may proceed happily to the administration pages."; print " Otherwise, you may need to update your database manually."; print ""; break; -- cgit v1.2.3