diff --git a/ChangeLog b/ChangeLog
index 4572a255d..12e1d24ae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -88,8 +88,12 @@ $Id$
3.3.5.0 (not yet released)
- patch #2932113 [information_schema] Slow export when having lots of
databases, thanks to Stéphane Pontier - shadow_walker
+- bug #3022705 [import] Import button does not work in Catalan when there
+ is no progress bar possible
+- bug [replication] Do not offer information_schema in the list of databases
+- bug [js] Avoid loading twice a js file
-3.3.4.0 (not yet released)
+3.3.4.0 (2010-06-28)
- bug #2996161 [import] properly escape import value
- bug #2998889 [import] Import button does not work in Catalan
- [browse] Fix handling of sort order if only column is specified.
diff --git a/Documentation.html b/Documentation.html
index 460915ad9..d414b477b 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -946,7 +946,8 @@ since this link provides funding for phpMyAdmin.
table. To allow the usage of this functionality:
This is related to the authentication mechanism (protocol) used by
@@ -4334,6 +4337,12 @@ chmod o+rwx tmp
Finally when you browse your table, you'll see in your column a link to stream your data, for example "View image". A header containing the correct MIME-type will be sent to your browser; this MIME-type was stored at upload time but in case it's incorrect, it's possible to edit it by clicking on the displayed MIME-type.
Click the first row of the range, hold the shift key and click the last row of the range. This works everywhere you see rows, for example in Browse mode or on the Structure page.
+
+
phpMyAdmin project
@@ -4372,7 +4381,7 @@ chmod o+rwx tmp
You can then put your translations, as a zip file to avoid losing special
- characters, on the sourceforge.net translation tracker.
+ characters, on the sourceforge.net translation tracker.
It would be a good idea to subscribe to the phpmyadmin-translators mailing
diff --git a/js/functions.js b/js/functions.js
index 7fcf00b7e..0479e8421 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -867,9 +867,9 @@ function PMA_markRowsInit() {
checkbox.checked = marked_row[unique_id];
if (typeof(event) == 'object') {
table = this.parentNode;
- i = 0;
- while (table.tagName.toLowerCase() != 'table' && i < 20) {
- i++;
+ parentTableLimit = 0;
+ while (table.tagName.toLowerCase() != 'table' && parentTableLimit < 20) {
+ parentTableLimit++;
table = table.parentNode;
}
@@ -884,7 +884,7 @@ function PMA_markRowsInit() {
}
while (i != this.rowIndex) {
- table.rows[i].onmousedown();
+ $(table.rows[i]).mousedown();
if (i < this.rowIndex) {
i++;
} else {
diff --git a/libraries/auth/cookie.auth.lib.php b/libraries/auth/cookie.auth.lib.php
index d2e16ec54..d524e1cb1 100644
--- a/libraries/auth/cookie.auth.lib.php
+++ b/libraries/auth/cookie.auth.lib.php
@@ -2,8 +2,6 @@
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Set of functions used to run cookie based authentication.
- * Thanks to Piotr Roszatycki and
- * Dan Wilson who built this patch for the Debian package.
*
* @package phpMyAdmin-Auth-Cookie
* @version $Id$
diff --git a/libraries/auth/swekey/swekey.php b/libraries/auth/swekey/swekey.php
index 66ce3504d..3e91e230e 100644
--- a/libraries/auth/swekey/swekey.php
+++ b/libraries/auth/swekey/swekey.php
@@ -390,7 +390,7 @@ function Swekey_GetFastHalfRndToken()
$_SESSION['rnd-token-date'] = time();
if (! empty($cachefile))
{
- // we unlink the file so no possible tempfile race attack (thanks Thijs)
+ // we unlink the file so no possible tempfile race attack
unlink($cachefile);
$file = fopen($cachefile , "x");
if ($file != FALSE)
diff --git a/libraries/common.inc.php b/libraries/common.inc.php
index 710ecdfc4..5366c18ec 100644
--- a/libraries/common.inc.php
+++ b/libraries/common.inc.php
@@ -563,13 +563,6 @@ $GLOBALS['footnotes'] = array();
/******************************************************************************/
/* loading language file LABEL_loading_language_file */
-/**
- * Added messages while developing:
- */
-if (file_exists('./lang/added_messages.php')) {
- include './lang/added_messages.php';
-}
-
/**
* lang detection is done here
*/
diff --git a/libraries/display_import.lib.php b/libraries/display_import.lib.php
index 923d9622d..dd9f650cc 100644
--- a/libraries/display_import.lib.php
+++ b/libraries/display_import.lib.php
@@ -2,7 +2,6 @@
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
*
- * @version $Id$
* @package phpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
@@ -94,9 +93,9 @@ if ($_SESSION[$SESSION_KEY]["handler"]!="noplugin") {
window.setTimeout(perform_upload, 1000);
- $('#upload_form_status_info').html(' ');
+ $('#upload_form_status_info').html(' ');
$('#upload_form_status').css("display", "none");
' . "\n";
diff --git a/libraries/ob.lib.php b/libraries/ob.lib.php
index 180c463fe..22903247e 100644
--- a/libraries/ob.lib.php
+++ b/libraries/ob.lib.php
@@ -41,8 +41,6 @@ function PMA_outBufferModeGet()
// any right frame file in phpMyAdmin will not be handled properly by
// the browser. My fix was to check the ini file within the
// PMA_outBufferModeGet() function.
- //
- // (Patch by Garth Gillespie, modified by Marc Delisle)
$mode = 0;
} elseif (function_exists('ob_get_level') && ob_get_level() > 0) {
// If output buffering is enabled in php.ini it's not possible to
diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php
index 587a67e20..6aefe89d2 100644
--- a/libraries/relation.lib.php
+++ b/libraries/relation.lib.php
@@ -965,7 +965,6 @@ function PMA_foreignDropdown($disp_row, $foreign_field, $foreign_display, $data,
/**
* Gets foreign keys in preparation for a drop-down selector
- * Thanks to
*
* @uses PMA_Table::countRecords()
* @uses PMA_backquote()
diff --git a/libraries/replication_gui.lib.php b/libraries/replication_gui.lib.php
index db41b206f..a975bee72 100644
--- a/libraries/replication_gui.lib.php
+++ b/libraries/replication_gui.lib.php
@@ -20,6 +20,9 @@ function PMA_replication_db_multibox()
$multi_values .= '
// We don't want binary data destroyed
elseif ($field['is_binary'] || $field['is_blob']) {
if (($cfg['ProtectBinary'] && $field['is_blob'])
diff --git a/tbl_printview.php b/tbl_printview.php
index 88c9a6bd9..7f7a8c804 100644
--- a/tbl_printview.php
+++ b/tbl_printview.php
@@ -53,8 +53,7 @@ PMA_DBI_select_db($db);
/**
- * Multi-tables printview thanks to Christophe Gesche from the "MySQL Form
- * Generator for PHPMyAdmin" (http://sourceforge.net/projects/phpmysqlformgen/)
+ * Multi-tables printview
*/
if (isset($selected_tbl) && is_array($selected_tbl)) {
$the_tables = $selected_tbl;
diff --git a/tbl_select.php b/tbl_select.php
index e965c50d7..99936f36e 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -95,7 +95,6 @@ if (!isset($param) || $param[0] == '') {
PMA_DBI_free_result($result);
unset($result, $type);
- //
// retrieve keys into foreign fields, if any
// check also foreigners even if relwork is FALSE (to get
// foreign keys from innodb)
@@ -183,7 +182,6 @@ while (list($operator) = each($GLOBALS['cfg']['UnaryOperators'])) {