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-02-26 09:09:46 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-02-26 09:09:46 +0300
commit7dcb353d1a4e58719b2db7c2997976eb6569d039 (patch)
tree784e0dce7ae212e33c668846dca32ed89028cb70 /js/config.js
parentbb211483935d93ca8c630eba427c1b6ba4af19e4 (diff)
Fix typo
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'js/config.js')
-rw-r--r--js/config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/config.js b/js/config.js
index ad1ced85ff..d029782852 100644
--- a/js/config.js
+++ b/js/config.js
@@ -414,7 +414,7 @@ function validate_field(field, isKeyUp, errors)
var args, result;
var $field = $(field);
var field_id = $field.attr('id');
- errors[$field_id] = [];
+ errors[field_id] = [];
var functions = getFieldValidators(field_id, isKeyUp);
for (var i = 0; i < functions.length; i++) {
if (typeof functions[i][1] !== 'undefined' && functions[i][1] !== null) {