The branch, master has been updated via 83b84c7925a30ab7e69bcfd01a2c8ff110b5be0a (commit) from 6c0e5fd7107e7d6719f8cd770a5d04da0c001c84 (commit)
- Log ----------------------------------------------------------------- commit 83b84c7925a30ab7e69bcfd01a2c8ff110b5be0a Author: Marc Delisle marc@infomarc.info Date: Mon Dec 27 09:14:17 2010 -0500
Add a space after the icon
-----------------------------------------------------------------------
Summary of changes: js/sql.js | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/js/sql.js b/js/sql.js index 7e85e46..d9ecdea 100644 --- a/js/sql.js +++ b/js/sql.js @@ -75,7 +75,7 @@ function appendInlineAnchor(disp_mode) { .addClass('inline_edit_anchor') .find('a').attr('href', '#') .find('span') - .text(PMA_messages['strInlineEdit']) + .text(' ' + PMA_messages['strInlineEdit']) .prepend($img_object);
$cloned_tr.insertAfter($this_tr); @@ -99,7 +99,7 @@ function appendInlineAnchor(disp_mode) { $cloned_anchor.addClass('inline_edit_anchor') .find('a').attr('href', '#') .find('span') - .text(PMA_messages['strInlineEdit']) + .text(' ' + PMA_messages['strInlineEdit']) .prepend($img_object);
$this_td.after($cloned_anchor);
hooks/post-receive