Remove double spaces around else

This commit is contained in:
Michal Čihař 2011-07-21 11:32:52 +02:00
parent 3650c3671f
commit 97daa89610
4 changed files with 4 additions and 4 deletions

View File

@ -979,7 +979,7 @@ $(document).ready(function() {
}
PMA_ajaxRemoveMessage($msgbox);
}) // end $.get()
} else {
} else {
PMA_ajaxShowMessage(PMA_messages['strNoRowSelected']);
}
});

View File

@ -160,7 +160,7 @@ $(document).ready(function() {
var url = $form.serialize()+"&ajax_request=true&submit_mult=change";
/*Calling for the changeColumns fucntion*/
changeColumns(action,url);
} else {
} else {
PMA_ajaxShowMessage(PMA_messages['strNoRowSelected']);
}
});

View File

@ -362,7 +362,7 @@ if (! defined('PMA_MINIMUM_COMMON')) {
if (class_exists('PMA_Message') && $GLOBALS['is_ajax_request'] != true) {
PMA_Message::notice(__('Automatically appended backtick to the end of query!'))->display();
}
} else {
} else {
$debugstr = __('Unclosed quote') . ' @ ' . $startquotepos. "\n"
. 'STR: ' . htmlspecialchars($quotetype);
PMA_SQP_throwError($debugstr, $sql);

View File

@ -488,7 +488,7 @@ $innodb_engine_plugin = PMA_StorageEngine::getEngine('innodb');
$innodb_plugin_version = $innodb_engine_plugin->getInnodbPluginVersion();
if (!empty($innodb_plugin_version)) {
$innodb_file_format = $innodb_engine_plugin->getInnodbFileFormat();
} else {
} else {
$innodb_file_format = '';
}
if ('Barracuda' == $innodb_file_format && $innodb_engine_plugin->supportsFilePerTable()) {