Home Forum
\n\t\t\n\t
Pages: [1 ]
Author
Topic: \n\t\t\n\t (Read 1317 times)
Marco
Joomla Newbie
Karma: +0/-2
Offline
Posts: 31
Hi, i see in the left upper corner of my website the string "\n\t\t\n\t " only when i click to insert a new post or a new pm (or i reply...). How can i remove it? thanks in advance. my configuration in my signature. my url is http://www.thegunners.it
Logged
Joomla 1.0.12 - SMF 1.1.1 - JSMF 2.0.1 - CB none - PHP 4.4.4 - MySQL 4.0.27.
Livebox
Guest
Search in the javascript-sourcecode for additional smilies.
Post.template.php function moreSmileys() { var row, i; if (smileyPopupWindow) smileyPopupWindow.close(); smileyPopupWindow = window.open("", "add_smileys", "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=480,height=220,resizable=yes"); smileyPopupWindow.document.write(\'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html>\'); smileyPopupWindow.document.write(\'\n\t<head>\n\t\t<title>', $txt['more_smileys_title'], '</title>\n\t\t<link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/style.css" />\n\t</head>\'); smileyPopupWindow.document.write(\'\n\t<body style="margin: 1ex;">\n\t\t<table width="100%" cellpadding="5" cellspacing="0" border="0" class="tborder">\n\t\t\t<tr class="titlebg"><td align="left">', $txt['more_smileys_pick'], '</td></tr>\n\t\t\t<tr class="windowbg"><td align="left">\'); for (row = 0; row < smileys.length; row++) { for (i = 0; i < smileys[row].length; i++) { smileys[row][i][2] = smileys[row][i][2].replace(/"/g, \'"\'); smileyPopupWindow.document.write(\'<a href="javascript:void(0);" onclick="window.opener.replaceText(" \' + smileys[row][i][0] + \'", window.opener.document.forms.', $context['post_form'], '.', $context['post_box_name'], '); window.focus(); return false;"><img src="', $settings['smileys_url'], '/\' + smileys[row][i][1] + \'" alt="\' + smileys[row][i][2] + \'" title="\' + smileys[row][i][2] + \'" style="padding: 4px;" border="0" /></a> \'); } smileyPopupWindow.document.write("<br />"); } smileyPopupWindow.document.write(\'</td></tr>\n\t\t\t<tr><td align="center" class="windowbg"><a href="javascript:window.close();\\">', $txt['more_smileys_close_window'], '</a></td></tr>\n\t\t</table>\n\t</body>\n</html>\'); smileyPopupWindow.document.close(); }
If you remove the \n\t's from that script it would work just fine.
http://www.simplemachines.org/community/index.php?topic=84334.0
Logged
Marco
Joomla Newbie
Karma: +0/-2
Offline
Posts: 31
it works now!! thanks a lot...
Logged
Joomla 1.0.12 - SMF 1.1.1 - JSMF 2.0.1 - CB none - PHP 4.4.4 - MySQL 4.0.27.
exrace
Joomla Newbie
Karma: +5/-3
Offline
Posts: 48
Which \n\t bits did you edit out? Some are necessary.
Logged
exrace
Joomla Newbie
Karma: +5/-3
Offline
Posts: 48
After reviewing the section of script a bit closer all those bits are doing is making the resulting JS script output more readable.
You only want to edit that function moreSmileys java script code.
I did edit all combinations of \n and \t within that function and it cleaned up the \n\t stray output.
Logged
Pages: [1 ]