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/gis_data_editor.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/gis_data_editor.js')
-rw-r--r--js/gis_data_editor.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/gis_data_editor.js b/js/gis_data_editor.js
index 2074b57f49..829126d308 100644
--- a/js/gis_data_editor.js
+++ b/js/gis_data_editor.js
@@ -58,7 +58,7 @@ function prepareJSVersion() {
*/
function addDataPoint(pointNumber, prefix) {
return '<br/>' +
- $.sprintf(PMA_messages.strPointN, (pointNumber + 1)) + ': ' +
+ PMA_sprintf(PMA_messages.strPointN, (pointNumber + 1)) + ': ' +
'<label for="x">' + PMA_messages.strX + '</label>' +
'<input type="text" name="' + prefix + '[' + pointNumber + '][x]" value=""/>' +
'<label for="y">' + PMA_messages.strY + '</label>' +