<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Where&amp;#039;s the &amp;lt;tbody&amp;gt; tag?</title>
        <description> The main forum overview (table class list&amp;quot;) has the &amp;lt;tbody&amp;gt; tag directly inside. I can&amp;#039;t find this tag anywhere in the code, not can I find the table rows inside tbody either... I&amp;#039;ve even tried the search function on github, but I can&amp;#039;t find the exact one. Does anyone know where these tags are?</description>
        <link>https://www.phorum.org/support/read.php?61,162039,162039#msg-162039</link>
        <lastBuildDate>Sat, 08 Aug 2026 07:53:02 -0500</lastBuildDate>
        <generator>Phorum 6.0.4</generator>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,162039,162053#msg-162053</guid>
            <title>Re: Where&#039;s the &lt;tbody&gt; tag?</title>
            <link>https://www.phorum.org/support/read.php?61,162039,162053#msg-162053</link>
            <description><![CDATA[ A bit of further investigation...<br />
<br />
Using Firefox 56<br />
Right click &quot;View Page Source&quot; on this forum, my forum, and my test forum on localhost. A search does not find a &lt;tbody&gt;.<br />
Saving the page to disk from the web site does not change the result.<br />
<br />
Right click &quot;Inspect Element (Q)&quot; , lo and behold the code for the table now has a &lt;tbody&gt;.]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Tue, 26 Jun 2018 08:30:41 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,162039,162050#msg-162050</guid>
            <title>Re: Where&#039;s the &lt;tbody&gt; tag?</title>
            <link>https://www.phorum.org/support/read.php?61,162039,162050#msg-162050</link>
            <description><![CDATA[ &lt;tbody&gt; is either assembled from bits, or javascript. I was unable to locate it.<br />
<br />
The Phorum Core from which you retrieved index_flat.tpl is not close to up to date.<br />
I would suggest you get the latest from the 5.2 branch<br />
<br />
<span style="font-size:small">I took a short  part of the code on Pastebin.<br />
<br />
php reads this code in and using instructions from Phorum, substitutes actual data contained in an Array, or sometimes right from the database. The following descriptions are simplified<br />
<br />
<br />
<pre class="bbcode">
&lt;table cellspacing=&quot;0&quot; class=&quot;list&quot;&gt;   // begin the table

    {LOOP FORUMS}   //   take one row from an Array of 0 or more rows, make a pass through the following lines 
//  performing the tests, writing the &lt;???&gt; ... &lt;/???&gt; tags, and  substituting the actual values/strings/URLs   
//  in the language specified.
 
        {IF FORUMS-&gt;level 0}  //  test to see if the Forum meets the condition, if true go to next line of code, 
//  if false jump to line after {ELSE} near the end of the code

            &lt;tr&gt;  //  if we are here, write the opening tag &lt;tr&gt; to an Arrray, or temp or cache file.   
//  creates a row if closed somewhere below

                {IF FORUMS-&gt;forum_id FORUMS-&gt;vroot}   // another test if true, go to next line, if false go to
//  line after {ELSE)

                    &lt;th align=&quot;left&quot;&gt;   // write  &lt;th align=&quot;left&quot;&gt;  to an Arrray, or temp or cache file

                        &lt;img src=&quot;{URL-&gt;TEMPLATE}/images/folder.png&quot; class=&quot;icon1616&quot; alt=&quot;&amp;bull;&quot; /&gt;   
//   write the URL for the .png

                        {LANG-&gt;Forums}  // get the correct language  for the word &quot;Forums&quot; and write it in that 
//  language to an Arrray, or temp or cache file

                    &lt;/th&gt;   // write the header cell closing tag

                {ELSE}   //  this is the ELSE for   {IF FORUMS-&gt;forum_id FORUMS-&gt;vroot}

                    &lt;th align=&quot;left&quot;&gt;  // if here, write &lt;th align=&quot;left&quot;&gt;  to an Arrray, or temp or cache file

                        &lt;img src=&quot;{URL-&gt;TEMPLATE}/images/folder.png&quot; class=&quot;icon1616&quot; alt=&quot;&amp;bull;&quot; /&gt;  
//  write the URL for the .png

                        &lt;a href=&quot;{FORUMS-&gt;URL-&gt;LIST}&quot;&gt;{FORUMS-&gt;name}&lt;/a&gt;  // write the URL for one folder or forum

                    &lt;/th&gt;  // write the header cell closing tag

                {/IF}    // ends {IF FORUMS-&gt;forum_id FORUMS-&gt;vroot}

                &lt;th&gt;{LANG-&gt;Threads}&lt;/th&gt;  // get the correct language and write the  word &quot;Threads&quot; in that language

                &lt;th&gt;{LANG-&gt;Posts}&lt;/th&gt;

                &lt;th align=&quot;left&quot;&gt;{LANG-&gt;LastPost}&lt;/th&gt;

            &lt;/tr&gt;

        {ELSE}  //   this is the ELSE for  {IF FORUMS-&gt;level 0}   

            &lt;tr&gt;  

  //     other stuff similar to above

            &lt;/tr&gt;


        {/IF}    //   ends     {IF FORUMS-&gt;level 0}

    {/LOOP FORUMS}   // when this line is read we go back to   {LOOP FORUMS} at the top get another row from the Array


&lt;/table&gt;   //  at some point we run out of Forums, or Folders and write the closing tag for the table
</pre></span>]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Sun, 24 Jun 2018 15:11:32 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,162039,162048#msg-162048</guid>
            <title>Re: Where&#039;s the &lt;tbody&gt; tag?</title>
            <link>https://www.phorum.org/support/read.php?61,162039,162048#msg-162048</link>
            <description><![CDATA[ Hey,<br />
Both of them. I want to add a class to the tbody and to each of the tr.]]></description>
            <dc:creator>cd5ssmffan</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Sat, 23 Jun 2018 16:36:17 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,162039,162047#msg-162047</guid>
            <title>Re: Where&#039;s the &lt;tbody&gt; tag?</title>
            <link>https://www.phorum.org/support/read.php?61,162039,162047#msg-162047</link>
            <description><![CDATA[ Are you looking for the &lt;tbody&gt; tag,  or where &lt;tr&gt; comes from?]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Sat, 23 Jun 2018 12:59:39 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,162039,162045#msg-162045</guid>
            <title>Re: Where&#039;s the &lt;tbody&gt; tag?</title>
            <link>https://www.phorum.org/support/read.php?61,162039,162045#msg-162045</link>
            <description><![CDATA[ I have already checked there, it doesn&#039;t exist. Here&#039;s the whole file:<br />
[<a href="https://pastebin.com/Pb9rnKbN" target="_blank"  rel="nofollow">pastebin.com</a>]<br />
<br />
I assume it&#039;s of the {FORUMS-&gt;...} tags but I am not sure how to edit those]]></description>
            <dc:creator>cd5ssmffan</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Thu, 21 Jun 2018 19:05:37 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,162039,162043#msg-162043</guid>
            <title>Re: Where&#039;s the &lt;tbody&gt; tag?</title>
            <link>https://www.phorum.org/support/read.php?61,162039,162043#msg-162043</link>
            <description><![CDATA[ Locate index_flat.tpl in your install. (see your photo)<br />
<br />
As best I can determine, this is not part of 5.2+ Phorum, I did not check the 5.1 branch, or its modules.]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Thu, 21 Jun 2018 10:06:08 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,162039,162041#msg-162041</guid>
            <title>Re: Where&#039;s the &lt;tbody&gt; tag?</title>
            <link>https://www.phorum.org/support/read.php?61,162039,162041#msg-162041</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Oliver Riesen-Mallmann</strong><br />
Look at the template files (*.tpl) in folder /templates/.</div></blockquote>
I have looked in every file. It&#039;s nowhere. What i mean is this stuff in red<br />
[<a href="https://imgur.com/9mJxBtE" target="_blank"  rel="nofollow">imgur.com</a>]]]></description>
            <dc:creator>cd5ssmffan</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Thu, 21 Jun 2018 02:45:44 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,162039,162040#msg-162040</guid>
            <title>Re: Where&#039;s the &lt;tbody&gt; tag?</title>
            <link>https://www.phorum.org/support/read.php?61,162039,162040#msg-162040</link>
            <description><![CDATA[ Look at the template files (*.tpl) in folder /templates/.]]></description>
            <dc:creator>Oliver Riesen-Mallmann</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Thu, 21 Jun 2018 02:27:38 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?61,162039,162039#msg-162039</guid>
            <title>Where&#039;s the &lt;tbody&gt; tag?</title>
            <link>https://www.phorum.org/support/read.php?61,162039,162039#msg-162039</link>
            <description><![CDATA[ The main forum overview (table class list&quot;) has the &lt;tbody&gt; tag directly inside. I can&#039;t find this tag anywhere in the code, not can I find the table rows inside tbody either... I&#039;ve even tried the search function on github, but I can&#039;t find the exact one. Does anyone know where these tags are?]]></description>
            <dc:creator>cd5ssmffan</dc:creator>
            <category>Phorum Support</category>
            <pubDate>Thu, 21 Jun 2018 01:43:39 -0500</pubDate>
        </item>
    </channel>
</rss>
