Merge branch 'QA_4_7'
This commit is contained in:
commit
a67c153884
@ -54,6 +54,7 @@ phpMyAdmin - ChangeLog
|
||||
- issue #12923 Fixed server side search in navigation panel
|
||||
- issue #12929 Undefined index warning with ssl_ca_paths
|
||||
- issue #12924 Do not show errors from OpenSSL cookie encryption/decryption
|
||||
- issue #12945 Fixed hint rendering on adding new user
|
||||
|
||||
4.6.6 (2017-01-23)
|
||||
- issue #12759 Fix Notice regarding 'Undefined index: old_usergroup'
|
||||
|
||||
@ -194,6 +194,7 @@ var PMA_console = {
|
||||
PMA_console.ajaxCallback(data);
|
||||
} catch (e) {
|
||||
console.log("Invalid JSON!" + e.message);
|
||||
console.trace();
|
||||
if (AJAX.xhr && AJAX.xhr.status === 0 && AJAX.xhr.statusText !== 'abort') {
|
||||
PMA_ajaxShowMessage($('<div />',{'class':'error','html':PMA_messages.strRequestFailed+' ( '+escapeHtml(AJAX.xhr.statusText)+' )'}));
|
||||
AJAX.active = false;
|
||||
|
||||
8
js/jquery/jquery-ui.min.js
vendored
8
js/jquery/jquery-ui.min.js
vendored
File diff suppressed because one or more lines are too long
2
js/jquery/src/jquery-ui/widget.js
vendored
2
js/jquery/src/jquery-ui/widget.js
vendored
@ -502,7 +502,7 @@ $.Widget.prototype = {
|
||||
for ( i = 0; i < classes.length; i++ ) {
|
||||
current = that.classesElementLookup[ classes[ i ] ] || $();
|
||||
if ( options.add ) {
|
||||
current = $( $.unique( current.get().concat( options.element.get() ) ) );
|
||||
current = $( $.uniqueSort( current.get().concat( options.element.get() ) ) );
|
||||
} else {
|
||||
current = $( current.not( options.element ).get() );
|
||||
}
|
||||
|
||||
@ -150,7 +150,7 @@ return $.widget( "ui.controlgroup", {
|
||||
} );
|
||||
} );
|
||||
|
||||
this.childWidgets = $( $.unique( childWidgets ) );
|
||||
this.childWidgets = $( $.uniqueSort( childWidgets ) );
|
||||
this._addClass( this.childWidgets, "ui-controlgroup-item" );
|
||||
},
|
||||
|
||||
|
||||
2
js/jquery/src/jquery-ui/widgets/tabs.js
vendored
2
js/jquery/src/jquery-ui/widgets/tabs.js
vendored
@ -96,7 +96,7 @@ $.widget( "ui.tabs", {
|
||||
// Take disabling tabs via class attribute from HTML
|
||||
// into account and update option properly.
|
||||
if ( $.isArray( options.disabled ) ) {
|
||||
options.disabled = $.unique( options.disabled.concat(
|
||||
options.disabled = $.uniqueSort( options.disabled.concat(
|
||||
$.map( this.tabs.filter( ".ui-state-disabled" ), function( li ) {
|
||||
return that.tabs.index( li );
|
||||
} )
|
||||
|
||||
@ -1634,7 +1634,7 @@ function PMA_getHtmlForLoginInformationFields(
|
||||
. $hostname_length . '" value="'
|
||||
// use default value of '%' to match with the default 'Any host'
|
||||
. htmlspecialchars(isset($GLOBALS['hostname']) ? $GLOBALS['hostname'] : '%')
|
||||
. '" title="' . __('Host name')
|
||||
. '" title="' . __('Host name') . '" '
|
||||
. ((isset($GLOBALS['pred_hostname'])
|
||||
&& $GLOBALS['pred_hostname'] == 'userdefined'
|
||||
)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user