This commit is contained in:
Marc Delisle
2006-11-19 13:07:51 +00:00
parent f8682d8bbd
commit 56011723e6
2 changed files with 6 additions and 2 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - ChangeLog
$Id$ $Id$
$Source$ $Source$
2006-11-19 Marc Delisle <lem9@users.sourceforge.net>
* scripts/upgrade.pl: bug #1599173, adapt for new filename structure,
thanks to Linas Gricius
2006-11-18 Michal Čihař <michal@cihar.com> 2006-11-18 Michal Čihař <michal@cihar.com>
* Documentation.html, libraries/ip_allow_deny.lib.php: Define headers * Documentation.html, libraries/ip_allow_deny.lib.php: Define headers
which to trust in configuration, thanks for help with this to Christian which to trust in configuration, thanks for help with this to Christian

View File

@@ -72,8 +72,8 @@ if (open(LATEST, "wget -o /dev/null -O - $source_url|")) {
$version = <LATEST>; chomp($version); $version = <LATEST>; chomp($version);
$releasedate = <LATEST>; chomp($releasedate); $releasedate = <LATEST>; chomp($releasedate);
$filename = "phpMyAdmin-" . $version . ".tar.gz"; $filename = "phpMyAdmin-" . $version . "-all-languages.tar.gz";
$directory = "phpMyAdmin-" . $version; $directory = "phpMyAdmin-" . $version . "-all-languages";
my $i = 0; my $i = 0;