Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-07-06 09:39:04 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-07-06 09:39:04 +0300
commitc987104160d74e64f181f16d3636c4cacf63bfc8 (patch)
treeefb2a94ae6b05f995bdd057cefa11911b880b331 /js/export.js
parent335f1caf09e9a45d0f8388d621a72df1da0b697c (diff)
Make scrutinizer happy
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'js/export.js')
-rw-r--r--js/export.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/export.js b/js/export.js
index c4a76a269a..faa911c15e 100644
--- a/js/export.js
+++ b/js/export.js
@@ -93,8 +93,8 @@ function createTemplate(name)
$('#templateName').val('');
$('#template').html(response.data);
$("#template option").each(function() {
- if($(this).text() == name) {
- $(this).prop('selected', true);
+ if ($(this).text() == name) {
+ $(this).prop('selected', true);
}
});
PMA_ajaxShowMessage(PMA_messages.strTemplateCreated);