Skip to content

Commit

Permalink
removed quotes from translated string, messed up in JS. And fixed to …
Browse files Browse the repository at this point in the history
…sprintf.
  • Loading branch information
helmo committed Nov 28, 2010
1 parent a3ae93f commit 15e3837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db_search.php
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ function PMA_getSearchSqls($table, $field, $search_str, $search_option)
$this_url_params['sql_query'] = $newsearchsqls['delete'];
echo '<td>' . PMA_linkOrButton(
'sql.php' . PMA_generate_common_url($this_url_params),
__('Delete'), printf(__('Delete the matches for the "%s" table?'), htmlspecialchars($each_table))) . "</td>\n";
__('Delete'), sprintf(__('Delete the matches for the %s table?'), htmlspecialchars($each_table))) . "</td>\n";

} else {
echo '<td>&nbsp;</td>' . "\n"
Expand Down

0 comments on commit 15e3837

Please sign in to comment.