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:
authorAtul Pratap Singh <atulpratapsingh05@gmail.com>2014-10-03 15:38:25 +0400
committerAtul Pratap Singh <atulpratapsingh05@gmail.com>2014-10-03 15:38:25 +0400
commitc70e109bd64f403207dd0b8d1fd998ad78e76fd5 (patch)
tree1ffb1fa2ca5411e49070dc4715969e1e4a2624ff /js/config.js
parent92f774216ae989fde7d8e30dd8ccb04dce1093f1 (diff)
Feature#1546 Replace js sprintf library with a better one
Signed-off-by: Atul Pratap Singh <atulpratapsingh05@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 71d4d05ec3..149e3d2091 100644
--- a/js/config.js
+++ b/js/config.js
@@ -261,7 +261,7 @@ var validators = {
if (isNaN(val)) {
return true;
}
- return val <= max_value ? true : $.sprintf(PMA_messages.error_value_lte, max_value);
+ return val <= max_value ? true : PMA_sprintf(PMA_messages.error_value_lte, max_value);
},
// field validators
_field: {