diff --git a/ChangeLog b/ChangeLog index 228bafff98..80c2ed94ca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ phpMyAdmin - ChangeLog 4.7.0.0 (not yet released) - issue #11924 Remove caching of server information +- issue #6146 Log authentication attempts to syslog 4.6.0.0 (not yet released) + issue #11456 Disabled storage engines @@ -81,6 +82,7 @@ phpMyAdmin - ChangeLog - issue #11964 Undefined index: TABLE_COMMENT in database structure page - issue #11967 Fix PHP error on loading invalid XML or ODS file - issue #11969 Missing confirmation while dropping a view in view_operations.php +- issue #11968 Fix export of index comments in SQL 4.5.4.1 (2016-01-29) - issue #11892 Error with PMA 4.4.15.3 @@ -126,7 +128,6 @@ phpMyAdmin - ChangeLog 4.3.14.0 (not yet released) - --- Older ChangeLogs can be found on our project website --- http://www.phpmyadmin.net/old-stuff/ChangeLogs/ diff --git a/js/navigation.js b/js/navigation.js index ace51fee6a..c134f34702 100644 --- a/js/navigation.js +++ b/js/navigation.js @@ -541,9 +541,6 @@ $(function () { } }); }); -}); - -AJAX.registerOnload('navigation.js', function () { // Check if session storage is supported if (isStorageSupported('sessionStorage')) { var storage = window.sessionStorage; @@ -564,11 +561,6 @@ AJAX.registerOnload('navigation.js', function () { } } }); -AJAX.registerTeardown('navigation.js', function () { - if (isStorageSupported('sessionStorage')) { - $(document).off('submit', 'form.config-form'); - } -}); /** * Expands a node in navigation tree. diff --git a/libraries/logging.lib.php b/libraries/logging.lib.php index 540ff5a4a5..105a9ead7d 100644 --- a/libraries/logging.lib.php +++ b/libraries/logging.lib.php @@ -22,5 +22,11 @@ function PMA_logUser($user, $status = 'ok') apache_note('userID', $user); apache_note('userStatus', $status); } + if (function_exists('syslog')) { + @syslog( + LOG_AUTHPRIV, + 'phpMyAdmin: ' . $user . ' (' . $status . ') from ' . $_SERVER['REMOTE_ADDR'] + ); + } } diff --git a/libraries/plugins/export/ExportSql.php b/libraries/plugins/export/ExportSql.php index 08710064c9..4e74fa4968 100644 --- a/libraries/plugins/export/ExportSql.php +++ b/libraries/plugins/export/ExportSql.php @@ -1632,7 +1632,9 @@ class ExportSql extends ExportPlugin unset($statement->fields[$key]); } else { if (empty($GLOBALS['sql_if_not_exists'])) { - $indexes[] = $field->build($field); + $indexes[] = str_replace( + 'COMMENT=\'', 'COMMENT \'', $field::build($field) + ); unset($statement->fields[$key]); } } diff --git a/po/cs.po b/po/cs.po index 998458750a..493906306d 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,10 +6,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-02-08 09:42+0100\n" -"PO-Revision-Date: 2016-01-31 11:31+0000\n" +"PO-Revision-Date: 2016-02-16 10:08+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Czech \n" +"Language-Team: Czech " +"\n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -10404,8 +10404,8 @@ msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" msgstr "" -"Vypisovat binární pole šestnáctkově (například, „abc“ becomes 0x616263)" +"Vypisovat binární pole šestnáctkově (například vypíše 0x616263 místo " +"„abc“)" #: libraries/plugins/export/ExportSql.php:447 msgid ""