<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Text style editor</title>
        <description>This is discussed anywhere else, I have written a simple module, which helps visitors of your phorum simply format a text of their messages using the BBcode formating. Though it looks like a php, it is written in javascript generally and supports lang files. Written under phorum 5.0.15a, tested with the MSIE and the Firefox. All opinions are welcome, this is my 1st better module.

It is easy to install (before changes, a good backup is recommended :-)), it becomes a module from 05-05-28.

Installation: You do not need all arrangements which came with last versions of the editor. You can find it on my phorum site for details. (Don&#039;t send test messages at the phorum pls :) To test you can use the prewiev -&quot;Náhled&quot;- button to see the result. Or, if you register you find a 3rd test phorum there.) Look for the new files below.

Enjoy!
</description>
        <link>https://www.phorum.org/support/read.php?16,16912,16912#msg-16912</link>
        <lastBuildDate>Sat, 11 Jul 2026 19:11:08 -0500</lastBuildDate>
        <generator>Phorum 6.0.0</generator>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,124745#msg-124745</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,124745#msg-124745</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />But (this modality I can see in my P 5.0) if you write a clear text message (with no BB-code formating tags anywhere else) with a plain text email address - it isn&#039;t converted to a clickable email address.</div></blockquote>
<br />
I thought it can be fixed using &quot;Simple Text Replacement Mod&quot; at the admin area of the Phorum. You can set replacement (as PCRE!) for<br />
<br />
<i><span style="color:#CC00CC">^ ([_a-zA-Z0-9\.\-]+)@([_a-zA-Z0-9\.\-]+\.[a-zA-Z]{2,4})$</span></i><br />
<br />
(do not forget to leave an empty characteristic after &quot;^&quot; at the beginning otherwise it looks to make messes with the BB-code module) to<br />
<br />
<i><span style="color:#CC00CC"> &lt;a href=&quot;mailto:$1@$2&quot;&gt;$1@$2&lt;/a&gt;</span></i><br />
<br />
(an empty characteristic at the beginning of the phrase again). I have tested this method and first time it looks working fine. You get a clickable email address from a plain text one in this way. It doesn&#039;t allow to make a clickable text (any text without a visible email) with an email as a link still. It would require a javascript function like that used by writing links and changes at BB-code module.<br />
Second time it doesn&#039;t work at all. It&#039;s outlandish.<br />
<br />
CU!]]></description>
            <dc:creator>hoowoo</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 13 Oct 2007 05:06:12 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,124736#msg-124736</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,124736#msg-124736</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />At this moment a plain text email address without BB-code tags for email are converted too.</div></blockquote>
<br />
I see. I can reproduce that at the phorum.org forums too. If I try to reproduce it on my latest 5.1 and 5.2 (which has a rewritten bbcode module) installations, I don&#039;t see this behavior. I&#039;m not exactly sure right now where the difference is.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 12 Oct 2007 10:08:26 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,124735#msg-124735</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,124735#msg-124735</link>
            <description><![CDATA[ Yes, I understand, mmakaay. If you want to write an email address, you put it between <a href="mailto:&#32;&#97;&#110;&#100;&#32;">&#32;&#97;&#110;&#100;&#32;</a> tags.<br />
<br />
It&#039;s possible to add an &quot;Email&quot; button to the editor too (like it is seen here, it is very nice :-) : you add e.g.<br />
<br />
<span style="color:#CC00CC"><i>&lt;input type=button value=&quot;&lt;?php echo $PHORUM[&#039;DATA&#039;][&#039;LANG&#039;][&#039;mod_styleedit&#039;][&#039;TEemail&#039;]?&gt;&quot; onclick=&quot;tag(&#039;email&#039;);&quot; class=&quot;PhorumSubmit&quot; onmouseover=&quot;help(&#039;&lt;?php echo $PHORUM[&#039;DATA&#039;][&#039;LANG&#039;][&#039;mod_styleedit&#039;][&#039;TEemailhelp&#039;]?&gt;&#039;);&quot; accesskey=&quot;e&quot;&gt;</i></span><br />
<br />
line to the format.php or to the bb_texteditor.php among buttons at the bottom of these files. At the same time you add a line <br />
<br />
<span style="color:#CC00CC"><i>echo &quot;index[&#039;email&#039;] = true;\n&quot;;</i></span><br />
<br />
among similar lines at the top of these files and add language translations for &quot;Email&quot; and &quot;Email help&quot; for this line into language files at mods/styleedit/lang.<br />
<br />
But (this modality I can see in my P 5.0) if you write a clear text message (with no BB-code formating tags anywhere else) with a plain text email address - it isn&#039;t converted to a clickable email address.<br />
And this is changed at the moment when you use any other (not only <a href="mailto:&#32;&#46;&#46;&#46;&#32;">&#32;&#46;&#46;&#46;&#32;</a> tag) BB-code tag somewhere else. At this moment a plain text email address without BB-code tags for email are converted too.<br />
<br />
CU!]]></description>
            <dc:creator>hoowoo</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 12 Oct 2007 09:44:34 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,124734#msg-124734</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,124734#msg-124734</link>
            <description><![CDATA[ I don&#039;t understand what you are trying to say hoowoo, sorry.<br />
<br />
About the mailto: not working: that is because the bbcode module apparently looks at mailto://... and not mailto:... This is a bug, but till now it didn&#039;t really get noticed I think (it&#039;s probably not used a lot by forum users). I&#039;ll take a look at the code. In the meanwhile, you can also use <a href="mailto:&#46;&#46;&#46;">&#46;&#46;&#46;</a> for placing a clickable email address in the message. Or even put in the bare email address, since that one will be converted to a clickable address automatically too.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 12 Oct 2007 08:05:57 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,124733#msg-124733</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,124733#msg-124733</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>notre-planete.info</strong><br />Hi,<br />
I suppose there is a bug with the &#039;Insert URL&#039; button when you want to insert a mailto instead of http://<br />
For example, I use this button with &quot;toto@freetoto.fr&quot; an print into the js box &quot;mailto:toto@freetoto.fr&quot;<br />
<br />
This give it to me :<br />
<a href="http://mailto:toto@freetoto.fr" target="_blank"  rel="nofollow">toto@freetoto.fr</a><br />
<br />
and not :<br />
<br />
<a href="mailto:&#116;&#111;&#116;&#111;&#64;&#102;&#114;&#101;&#101;&#116;&#111;&#116;&#111;&#46;&#102;&#114;">&#116;&#111;&#116;&#111;&#64;&#102;&#114;&#101;&#101;&#116;&#111;&#116;&#111;&#46;&#102;&#114;</a><br />
<br />
I&#039;ve tried to solve it but I&#039;m not good in regular expressions<br />
<br />
Thank you in advance for your help</div></blockquote>
<br />
Hallo, I do not think this is a text editor bug but I do not understand the code perfectly. This is interesting: if you write any BB-code tag into a text of a message than the BB-code modul is activated and than you get a good trasnscription.<br />
<br />
I try to think about a solution and I&#039;ll write if I&#039;ll find any.]]></description>
            <dc:creator>hoowoo</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 12 Oct 2007 06:32:37 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,124619#msg-124619</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,124619#msg-124619</link>
            <description><![CDATA[ Hi,<br />
I suppose there is a bug with the &#039;Insert URL&#039; button when you want to insert a mailto instead of http://<br />
For example, I use this button with &quot;toto@freetoto.fr&quot; an print into the js box &quot;mailto:toto@freetoto.fr&quot;<br />
<br />
This give it to me :<br />
<a href="http://mailto:toto@freetoto.fr" target="_blank"  rel="nofollow">toto@freetoto.fr</a><br />
<br />
and not :<br />
<br />
<a href="mailto:&#116;&#111;&#116;&#111;&#64;&#102;&#114;&#101;&#101;&#116;&#111;&#116;&#111;&#46;&#102;&#114;">&#116;&#111;&#116;&#111;&#64;&#102;&#114;&#101;&#101;&#116;&#111;&#116;&#111;&#46;&#102;&#114;</a><br />
<br />
I&#039;ve tried to solve it but I&#039;m not good in regular expressions<br />
<br />
Thank you in advance for your help]]></description>
            <dc:creator>notre-planete.info</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 07 Oct 2007 16:22:06 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,123995#msg-123995</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,123995#msg-123995</link>
            <description><![CDATA[ The latest iteration of this module as listed in the files at the start of the topic has some hardcoded language (non-english) when you click the Picture bbcode button. It&#039;s easy to correct, on 235 of the include/bb_texteditor.php file. I changed mine to:<br />
<br />
<pre class="bbcode">
echo &quot;x = prompt (&#039;Enter the URL of the image:&#039;,&#039;[<a href="http://&#039" target="_blank"  rel="nofollow">&</a>];);\n&quot;;</pre>
<br />
I noticed all the echo statements there too. Isn&#039;t that a bit of overkill? Wouldn&#039;t it me more efficient to just have that as HTML instead of embedded in PHP?]]></description>
            <dc:creator>Steel Rat</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Thu, 23 Aug 2007 15:35:23 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,118195#msg-118195</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,118195#msg-118195</link>
            <description><![CDATA[ that good, let me try,thank you]]></description>
            <dc:creator>lochen</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 10 Nov 2006 05:09:52 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,117872#msg-117872</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,117872#msg-117872</link>
            <description><![CDATA[ Many thanks !<br />
<br />
Yves]]></description>
            <dc:creator>Yves Julien</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 29 Oct 2006 17:20:24 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,117865#msg-117865</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,117865#msg-117865</link>
            <description><![CDATA[ disable the markdown module.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 29 Oct 2006 15:12:51 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,117864#msg-117864</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,117864#msg-117864</link>
            <description><![CDATA[ Hi Maurice,<br />
<br />
OK now I have installed the &quot;editor_tools&quot; module, the &quot;topic_smiley&quot;. The &quot;bbcode&quot; module was already there and the &quot;smileys&quot; too.<br />
<br />
There seams to be a bug on my version. When I write this :<br />
<br />
<pre class="bbcode">
line 1,
line 2,

line 3</pre>
<br />
I get this<br />
<br />
<pre class="bbcode">
line 1,line 2,

line 3</pre>
<br />
It looks like the return carriage will not work if it&#039;s only once. But here, it works well !?!?!<br />
<br />
Do you have any idea?<br />
<br />
Regards,<br />
<br />
Yves]]></description>
            <dc:creator>Yves Julien</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 29 Oct 2006 14:50:49 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,117858#msg-117858</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,117858#msg-117858</link>
            <description><![CDATA[ That message in which that file is posted explains it all: &quot;If you enable the Topic Smiley module in addition to the Editor Tools module, it will override the functionality of the subject smiley tool button. Instead of simply adding smileys to the subject, it will make sure that at most one smiley can be used in the subject and that this smiley is always placed at the verty start of the subject.&quot;<br />
<br />
This is a module that extends the functionality of the editor tools. So somewhat like a module for a module. You only have to install it, if you like to give the subject smiley button the functionality as described above.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 29 Oct 2006 13:32:25 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,117832#msg-117832</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,117832#msg-117832</link>
            <description><![CDATA[ Thank you Maurice!<br />
<br />
I also see other file such as &quot;topic_smiley-1.0.2.tar.gz&quot;. What are these ?<br />
<br />
Regards,<br />
<br />
Yves]]></description>
            <dc:creator>Yves Julien</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 29 Oct 2006 08:33:54 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,117829#msg-117829</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,117829#msg-117829</link>
            <description><![CDATA[ The one that is used here is called &quot;Editor Tools&quot;. In Phorum 5.1, there&#039;s already a very early version of the Editor Tools module included. To install the version that is used on this website, disable the existing Editor Tools module in the Modules admin screen and delete the existing directory mods/editor_tools in your Phorum directory. After that, you can install the <a href="http://www.phorum.org/phorum5/read.php?16,114352" target="_blank" >Editor Tools module</a> (download the editor_tools-x.y.z.tar.gz from the linked thread). Instructions are in the included README file.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 29 Oct 2006 04:34:39 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,117826#msg-117826</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,117826#msg-117826</link>
            <description><![CDATA[ Hello,<br />
<br />
I would like to add on my phorum the module that allow users to edit the style of the text just like the one I see up here<br />
<b>B</b> <u>U</u> <i>I</i> <s>abc</s> etc.<br />
<br />
But I a bit confused with the all the editor tool provided on this Phorum. Which one is the right one? i don&#039;t feel like try him them all... :-(<br />
<br />
Thanks,<br />
<br />
Yves]]></description>
            <dc:creator>Yves Julien</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 28 Oct 2006 22:22:12 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,115394#msg-115394</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,115394#msg-115394</link>
            <description><![CDATA[ Just post it to <a href="http://www.phorum.org/phorum5/read.php?16,114352" target="_blank" >the appropriate thread</a>, then I&#039;ll pick it up and put it in the distribution. This thread is not about my Editor Tools module, so better stop posting in it.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 12 Aug 2006 13:31:36 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,115389#msg-115389</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,115389#msg-115389</link>
            <description><![CDATA[ Thanks as usual Maurice. I have translated the module you have made so now there is an italian version which is available. Just tell me where and to whom I should send it.<br />
<br />
Thanks again.]]></description>
            <dc:creator>Nicola</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 12 Aug 2006 11:42:05 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,115388#msg-115388</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,115388#msg-115388</link>
            <description><![CDATA[ Instead of topics, you mean forums probably. Topics are the lines of discussion that are started in a forum. <br />
<br />
No, it&#039;s not possible to have a different set of smileys for each forum. Or to put it better: It is possible, but there is no ready-to-go solution for that, so it would need coding to create a module that does handle this specific wish.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 12 Aug 2006 11:15:05 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,115386#msg-115386</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,115386#msg-115386</link>
            <description><![CDATA[ Is there a chance to create templates allowing diferent smileys?<br />
<br />
i.e. I can customise templates for different topics. Is it possible to customise smileys for different topics as well?]]></description>
            <dc:creator>Nicola</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 12 Aug 2006 10:12:38 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,115385#msg-115385</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,115385#msg-115385</link>
            <description><![CDATA[ please read the correct thread and post questions there.<br />
it really doesn&#039;t belong in this topic.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 12 Aug 2006 09:19:26 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,115384#msg-115384</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,115384#msg-115384</link>
            <description><![CDATA[ I am translating now the language file in Italian.<br />
<br />
Some words have the apostrophes &#039; but if I insert one it invalidates the script. Is there a way to make it appear on the text?<br />
<br />
Moreover once I finished with the translation I would like to make the language file available. How may I do that?<br />
<br />
Thanks.]]></description>
            <dc:creator>Nicola</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 12 Aug 2006 08:35:44 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,115383#msg-115383</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,115383#msg-115383</link>
            <description><![CDATA[ Many thanks, it works perfectly !!! :)]]></description>
            <dc:creator>Nicola</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 12 Aug 2006 08:15:32 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,115382#msg-115382</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,115382#msg-115382</link>
            <description><![CDATA[ in the same thread where you already posted:<br />
[<a href="http://www.phorum.org/phorum5/read.php?16,114352,page=1" target="_blank" >www.phorum.org</a>]]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 12 Aug 2006 08:07:19 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,115381#msg-115381</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,115381#msg-115381</link>
            <description><![CDATA[ Where can I download it or find instructions?]]></description>
            <dc:creator>Nicola</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 12 Aug 2006 08:06:08 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,115380#msg-115380</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,115380#msg-115380</link>
            <description><![CDATA[ that module was made for phorum-5.0.x, phorum-5.1.x has another template-structure.<br />
you really want to use the editor-tools provided by maurice which don&#039;t need template changes.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 12 Aug 2006 08:02:14 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,115379#msg-115379</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,115379#msg-115379</link>
            <description><![CDATA[ I have downloaded Style_editor.zip<br />
<br />
In the readme txt file the instruction is to edit <b>cc_pm_post.tpl, edit.tpl and post_form.tpl</b><br />
<br />
I cannot find these files!!!<br />
<br />
Can anyone suggest and help?<br />
<br />
On the other hand the module shows and I have also turned it on but I guess without editing these tpl files it won&#039;t work.<br />
<br />
Thanks!!!]]></description>
            <dc:creator>Nicola</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 12 Aug 2006 08:00:48 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,114148#msg-114148</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,114148#msg-114148</link>
            <description><![CDATA[ Thanks but not working with phorum 5.1.13 (preview page).<br />
Enclosed my contribution in french language.]]></description>
            <dc:creator>Patricius</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Mon, 03 Jul 2006 13:27:13 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,112835#msg-112835</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,112835#msg-112835</link>
            <description><![CDATA[ Thanx, it works.<br />
If somebody need this here it is:<br />
In bb_texteditor.php put this <br />
<br />
<pre class="bbcode">
&lt;?php if ($GLOBALS[&quot;PHORUM&quot;][&quot;DATA&quot;][&quot;MODERATOR&quot;]==true) { ?&gt;
&lt;input type=&quot;button&quot; id=&quot;bbbold&quot; class=&quot;StileSubmit&quot; title=&quot;&lt;?php echo $TE_lang[&#039;TE_Bhelp&#039;]?&gt;&quot;.......
.......
&lt;?php } else { ?&gt;
&lt;input type=&quot;button&quot; id=&quot;bbbold&quot; class=&quot;StileSubmit&quot; title=&quot;&lt;?php echo $TE_lang[&#039;TE_Bhelp&#039;]?&gt;&quot;.......
.......
&lt;?php } ?&gt;  
</pre>]]></description>
            <dc:creator>pixelz</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Thu, 11 May 2006 18:50:30 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,112833#msg-112833</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,112833#msg-112833</link>
            <description><![CDATA[ Since this means you probably can code PHP, you should be able how to change the bb_texteditor.php. What you can use in the code is $GLOBALS[&quot;PHORUM&quot;][&quot;DATA&quot;][&quot;MODERATOR&quot;] which will be set to a true value in case the current user is an administrator.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Thu, 11 May 2006 16:52:55 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,16912,112828#msg-112828</guid>
            <title>Re: Text style editor</title>
            <link>https://www.phorum.org/support/read.php?16,16912,112828#msg-112828</link>
            <description><![CDATA[ Because, I write some new tags in bbcode.php only for moderator and users dont know thay exist and because they can make a chaos with those tags.<br />
How to do that in bb_texteditor.php?]]></description>
            <dc:creator>pixelz</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Thu, 11 May 2006 15:50:14 -0500</pubDate>
        </item>
    </channel>
</rss>
