diff --git a/ChangeLog b/ChangeLog index 2c71eb090..25c25bb6d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - ChangeLog $Id$ $Source$ +2006-11-19 Marc Delisle + * scripts/upgrade.pl: bug #1599173, adapt for new filename structure, + thanks to Linas Gricius + 2006-11-18 Michal Čihař * Documentation.html, libraries/ip_allow_deny.lib.php: Define headers which to trust in configuration, thanks for help with this to Christian diff --git a/scripts/upgrade.pl b/scripts/upgrade.pl index d7ec7ca84..c9e625e16 100755 --- a/scripts/upgrade.pl +++ b/scripts/upgrade.pl @@ -72,8 +72,8 @@ if (open(LATEST, "wget -o /dev/null -O - $source_url|")) { $version = ; chomp($version); $releasedate = ; chomp($releasedate); - $filename = "phpMyAdmin-" . $version . ".tar.gz"; - $directory = "phpMyAdmin-" . $version; + $filename = "phpMyAdmin-" . $version . "-all-languages.tar.gz"; + $directory = "phpMyAdmin-" . $version . "-all-languages"; my $i = 0;