@@ -133,7 +133,7 @@ DatabaseStructure.adjustTotals = function () {
133133
134134 // Update summary with new data
135135 var $summary = $ ( '#tbl_summary_row' ) ;
136- $summary . find ( '.tbl_num' ) . text ( Functions . sprintf ( window . Messages . strNTables , tableSum ) ) ;
136+ $summary . find ( '.tbl_num' ) . text ( window . sprintf ( window . Messages . strNTables , tableSum ) ) ;
137137 if ( rowSumApproximated ) {
138138 $summary . find ( '.row_count_sum' ) . text ( strRowSum ) ;
139139 } else {
@@ -327,7 +327,7 @@ AJAX.registerOnload('database/structure.js', function () {
327327 * @var question String containing the question to be asked for confirmation
328328 */
329329 var question = window . Messages . strTruncateTableStrongWarning + ' ' +
330- Functions . sprintf ( window . Messages . strDoYouReally , 'TRUNCATE `' + Functions . escapeHtml ( currTableName ) + '`' ) +
330+ window . sprintf ( window . Messages . strDoYouReally , 'TRUNCATE `' + Functions . escapeHtml ( currTableName ) + '`' ) +
331331 Functions . getForeignKeyCheckboxLoader ( ) ;
332332
333333 $thisAnchor . confirm ( question , $thisAnchor . attr ( 'href' ) , function ( url ) {
@@ -377,10 +377,10 @@ AJAX.registerOnload('database/structure.js', function () {
377377 var question ;
378378 if ( ! isView ) {
379379 question = window . Messages . strDropTableStrongWarning + ' ' +
380- Functions . sprintf ( window . Messages . strDoYouReally , 'DROP TABLE `' + Functions . escapeHtml ( currTableName ) + '`' ) ;
380+ window . sprintf ( window . Messages . strDoYouReally , 'DROP TABLE `' + Functions . escapeHtml ( currTableName ) + '`' ) ;
381381 } else {
382382 question =
383- Functions . sprintf ( window . Messages . strDoYouReally , 'DROP VIEW `' + Functions . escapeHtml ( currTableName ) + '`' ) ;
383+ window . sprintf ( window . Messages . strDoYouReally , 'DROP VIEW `' + Functions . escapeHtml ( currTableName ) + '`' ) ;
384384 }
385385 question += Functions . getForeignKeyCheckboxLoader ( ) ;
386386
0 commit comments