diff --git a/ChangeLog b/ChangeLog index 0dbc99816..1d00a3f40 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,8 @@ $HeadURL$ * pmd_general.php, pmd_get_info.php, pmd/scripts/move.js, pmd_relation_new.php, lang/*: support internal relations also on unique keys, not only on primary keys + * 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 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;