Fixed issue due to which the notifications div was visible even after clearing the message

This commit is contained in:
ninadsp
2010-07-12 23:49:27 +05:30
parent e0f80088aa
commit a1e9702434

View File

@@ -1742,6 +1742,11 @@ function PMA_ajaxInsertResponse(divisions_map) {
function PMA_ajaxShowMessage(message, timeout) {
//Handle the case when a empty data.message is passed. We don't want the empty message
if(message = '') {
return true;
}
if(!message) {
var msg = PMA_messages['strLoading'];
}