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
path: root/js
diff options
context:
space:
mode:
authorRouslan Placella <rouslan@placella.com>2012-06-09 20:47:17 +0400
committerRouslan Placella <rouslan@placella.com>2012-06-09 20:47:17 +0400
commit8c2e27e972cabcc4d3c81e5542649cba4e1a3ffd (patch)
tree27f214800dc48ee955f903e09f63a022314eb0d5 /js
parentff104ac6cacad2c45faa83bc857422b85c3c2253 (diff)
Fixed invalid HTML tag
Diffstat (limited to 'js')
-rw-r--r--js/server_variables.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/server_variables.js b/js/server_variables.js
index ef453f02d4..c54b27255a 100644
--- a/js/server_variables.js
+++ b/js/server_variables.js
@@ -170,7 +170,7 @@ function editVariable(link)
$cell.html('<span class="oldContent" style="display:none;">' + $cell.html() + '</span>');
// put edit field and save/cancel link
$cell.prepend('<table class="serverVariableEditTable" border="0"><tr><td></td><td style="width:100%;">' +
- '<input type="text" id="variableEditArea" value="' + data + '" /></td></tr</table>');
+ '<input type="text" id="variableEditArea" value="' + data + '" /></td></tr></table>');
$cell.find('table td:first').append(mySaveLink);
$cell.find('table td:first').append(' ');
$cell.find('table td:first').append(myCancelLink);