From 83b84c7925a30ab7e69bcfd01a2c8ff110b5be0a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 27 Dec 2010 09:14:17 -0500 Subject: [PATCH] Add a space after the icon --- js/sql.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/sql.js b/js/sql.js index 7e85e464a..d9ecdea05 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);