From a8caf74fdafdce6b65a411635593f2347ae984ae Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 20 Jun 2011 12:18:57 -0400 Subject: [PATCH 1/4] 3.4.3-rc1 --- Documentation.html | 4 ++-- README | 2 +- libraries/Config.class.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Documentation.html b/Documentation.html index 6146f216bb..fb2a8819f9 100644 --- a/Documentation.html +++ b/Documentation.html @@ -9,7 +9,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 - phpMyAdmin 3.4.3-dev - Documentation + phpMyAdmin 3.4.3-rc1 - Documentation @@ -17,7 +17,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 diff --git a/README b/README index d3da4f92fc..53a08eb4b0 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ phpMyAdmin - Readme =================== -Version 3.4.3-dev +Version 3.4.3-rc1 A set of PHP-scripts to manage MySQL over the web. diff --git a/libraries/Config.class.php b/libraries/Config.class.php index d426b53388..7081f83942 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -96,7 +96,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '3.4.3-dev'); + $this->set('PMA_VERSION', '3.4.3-rc1'); /** * @deprecated */ From 7ecb1abaa49142a7e0b3f6d6e37cb4855e17ddf9 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 20 Jun 2011 12:21:11 -0400 Subject: [PATCH 2/4] 3.4.4-dev --- ChangeLog | 2 ++ Documentation.html | 4 ++-- README | 2 +- libraries/Config.class.php | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index a3a7ff679e..9bb28a813c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,8 @@ phpMyAdmin - ChangeLog ====================== +3.4.4.0 (not yet released) + 3.4.3.0 (not yet released) - bug #3311170 [sync] Missing helper icons in Synchronize - patch #3304473 [setup] Redefine a lable that was wrong diff --git a/Documentation.html b/Documentation.html index 6146f216bb..23efaa9548 100644 --- a/Documentation.html +++ b/Documentation.html @@ -9,7 +9,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 - phpMyAdmin 3.4.3-dev - Documentation + phpMyAdmin 3.4.4-dev - Documentation @@ -17,7 +17,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 diff --git a/README b/README index d3da4f92fc..06955517ff 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ phpMyAdmin - Readme =================== -Version 3.4.3-dev +Version 3.4.4-dev A set of PHP-scripts to manage MySQL over the web. diff --git a/libraries/Config.class.php b/libraries/Config.class.php index d426b53388..f9e10f039a 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -96,7 +96,7 @@ class PMA_Config */ function checkSystem() { - $this->set('PMA_VERSION', '3.4.3-dev'); + $this->set('PMA_VERSION', '3.4.4-dev'); /** * @deprecated */ From cb043f4365be9b8edec63188d339eda2154401fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 21 Jun 2011 12:04:52 +0200 Subject: [PATCH 3/4] Use standard infrastructure for generating links, this also prevents XSS --- enum_editor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/enum_editor.php b/enum_editor.php index 586e85e7ff..ab86d737cb 100644 --- a/enum_editor.php +++ b/enum_editor.php @@ -53,11 +53,11 @@ require_once './libraries/header_meta_style.inc.php'; ?>

- "> +

- + From dc6c1e8b5cc0d2d116e000cba7752f60be248ffd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 21 Jun 2011 12:08:48 +0200 Subject: [PATCH 4/4] I think htmlspecialchars should be used here --- import.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/import.php b/import.php index 78e5ffdb4a..d706b60552 100644 --- a/import.php +++ b/import.php @@ -108,7 +108,7 @@ if ($import_type == 'table') { } $err_url = $goto . '?' . $common - . (preg_match('@^tbl_[a-z]*\.php$@', $goto) ? '&table=' . urlencode($table) : ''); + . (preg_match('@^tbl_[a-z]*\.php$@', $goto) ? '&table=' . htmlspecialchars($table) : ''); $_SESSION['Import_message']['go_back_url'] = $err_url; }