Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2006-11-19 16:10:31 +0300
committerMarc Delisle <marc@infomarc.info>2006-11-19 16:10:31 +0300
commitba720b7de9c50c3a06f55f0e1f550492b328aeb9 (patch)
tree9ef4bdae23cdab4ebeed222285b6a334e5f84099
parent3affb2d94bd327102611df98cb51cb32d7ed7e22 (diff)
bug #1599173
-rw-r--r--ChangeLog2
-rwxr-xr-xscripts/upgrade.pl4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0dbc998164..1d00a3f40d 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ř <michal@cihar.com>
* Documentation.html, libraries/ip_allow_deny.lib.php: Define headers
diff --git a/scripts/upgrade.pl b/scripts/upgrade.pl
index d7ec7ca84a..c9e625e16c 100755
--- a/scripts/upgrade.pl
+++ b/scripts/upgrade.pl
@@ -72,8 +72,8 @@ if (open(LATEST, "wget -o /dev/null -O - $source_url|")) {
$version = <LATEST>; chomp($version);
$releasedate = <LATEST>; 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;