<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>New Count module</title>
        <description>This module displays how many new messages the thread in question has (not just the &quot;new&quot; text).

Usage:

unzip to mods-directory, add your &quot;new&quot; strings if you want and enable in Control center.

edit: 13.5.2005 v. 1.7, shows the total number of new messages if wanted (is there an easier way?) look for the file later on this thread</description>
        <link>https://www.phorum.org/support/read.php?16,8802,8802#msg-8802</link>
        <lastBuildDate>Sun, 09 Aug 2026 15:06:22 -0500</lastBuildDate>
        <generator>Phorum 6.0.4</generator>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,126481#msg-126481</guid>
            <title>Re: New Count module</title>
            <link>https://www.phorum.org/support/read.php?16,8802,126481#msg-126481</link>
            <description><![CDATA[ The &quot;emerald&quot; template does not use {MESSAGES-&gt;new} as a string in the template. It only uses it to change the icon in front of the thread subjects. It is however possible to add some code to your template to take care of this yourself. I did try to build a feature that automatically adds the info, but that was not possible. It was possible to add &quot;(1 new)&quot; to the subject, but it wasn&#039;t clickable that way, because the link would end up embedded inside the full subject line link.<br />
<br />
I did some updates to the module to clean up some code and to extend the documentation in the README file to show how to edit &quot;emerald&quot; for displaying new message counts on the list page. I uploaded it as version 1.13 in the Phorum 5.2 modules forum. Here&#039;s the excerpt from the updated documentation that applies to your case:<br />
<br />
<pre class="bbcode">
  The default Phorum 5.1 template will already show the amount of new
  messages for threads on the list page if you have this module enabled.
  The default Phorum 5.2 template (&quot;emerald&quot;) however, will not do so.
  In that template, the new message information {MESSAGES-&gt;new} is just
  used to change the icon in front of threads that contain new messages.
  To display the number of new messages for threads in that template,
  you will have to edit the list.tpl template.

  You can use these template variables inside the {LOOP MESSAGES} loop:

    {MESSAGES-&gt;new}       A formatted string &quot;[X] new&quot; that is set if there
                          are new messages for the thread.
    {MESSAGES-&gt;new_count} The number of new messages for the thread.

  You can for example use the following code somewhere after the
  {MESSAGES-&gt;subject} in list.tpl to match the old 5.1 behavior:

    {IF MESSAGES-&gt;new}
      &lt;a href=&quot;{MESSAGES-&gt;URL-&gt;NEWPOST}&quot;&gt;
        &lt;span class=&quot;new-indicator&quot;&gt;{MESSAGES-&gt;new}&lt;/span&gt;
      &lt;/a&gt;
    {/IF}
</pre>]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Wed, 02 Jan 2008 04:24:46 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,126478#msg-126478</guid>
            <title>Re: New Count module</title>
            <link>https://www.phorum.org/support/read.php?16,8802,126478#msg-126478</link>
            <description><![CDATA[ Does this display the count next to messages in 5.2? i.e <br />
<br />
&#039;2 new&#039; or &#039;5 new&#039; next to each message in list.tpl ?<br />
<br />
I can&#039;t get it to work in 5.2. <br />
<br />
It works fine for a total on index.tpl.<br />
<br />
Any ideas?]]></description>
            <dc:creator>M@AATW</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Wed, 02 Jan 2008 00:50:19 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,121836#msg-121836</guid>
            <title>Re: New message count for future version 5.2</title>
            <link>https://www.phorum.org/support/read.php?16,8802,121836#msg-121836</link>
            <description><![CDATA[ There&#039;s nothing wrong with nitpicking ;-)<br />
I&#039;ve got this code in my latest version of the new_count module already:<br />
<pre class="bbcode">
    // If we have no forums at all, then the new count will not be set.
    if (!isset($PHORUM[&quot;DATA&quot;][&quot;MOD_NEW_COUNT&quot;])) return;</pre>
<br />
Ah, I&#039;m at 1.12 in my module repository, but I uploaded only up to 1.10. Probably because I didn&#039;t thinkt the bugs were that bad. My changelogs for the last two versions:<br />
<pre class="bbcode">
1.11 Fixed PHP warning that was shown in case no forums were defined at all.

1.12 Fixed another couple of small undefined index warnings.</pre>
<br />
I uploaded the latest release in this message.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 11 May 2007 05:22:30 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,121835#msg-121835</guid>
            <title>Re: New message count for future version 5.2</title>
            <link>https://www.phorum.org/support/read.php?16,8802,121835#msg-121835</link>
            <description><![CDATA[ Found a small bug in the, when you go to index.php and there is no forums to display (e.g. they&#039;re all private and your account doesn&#039;t have access to them) you get a PHP error:<br />
<i>Notice: Undefined index: MOD_NEW_COUNT in C:\www\phorum\mods\new_count\new_count.php on line 152</i><br />
This is because the index hook is never reached if no forums are found, thus the data isn&#039;t setup properly.<br />
<br />
This is easily fixed by sticking:<br />
<i>if(!count($PHORUM[&quot;DATA&quot;][&quot;FORUMS&quot;])) return;</i><br />
somewhere early in mod_new_count_after_header().<br />
<br />
Happens during quite rare/silly circumstances, but still. :)]]></description>
            <dc:creator>Mathias</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 11 May 2007 03:40:58 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,115817#msg-115817</guid>
            <title>Re: New message count for future version 5.2</title>
            <link>https://www.phorum.org/support/read.php?16,8802,115817#msg-115817</link>
            <description><![CDATA[ Here&#039;s a followup release for version 1.9.2. This version can be used safely with both the stable Phorum 5.1 release and the current Phorum 5.2 development tree.<br />
<br />
1.10 PHP warnings were shown in case there was a &quot;thread moved&quot; notification<br />
    in the forum. These notifications are now skipped when counting new<br />
    messages for the message list.<br />
<br />
    Modified the module, so now it will work for both Phorum 5.1 and 5.2.<br />
<br />
    Removed the need for the common hook in the code (it was used for<br />
    setting up some data to prevent undefined index warnings later on,<br />
    but this could be handled more gracefully).<br />
<br />
<i>Note to Oliver: If you extend on a module, please leave the Changelog and README files intact. Your 1.9.2 package did not contain these files anymore. Especially the README is useful for this module, because it contains installation and customization information. Thanks!</i><br />
<br />
<i>Edit: attachments deleted, because a new version was released.</i>]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Thu, 24 Aug 2006 08:00:32 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,113667#msg-113667</guid>
            <title>Re: New message count for future version 5.2</title>
            <link>https://www.phorum.org/support/read.php?16,8802,113667#msg-113667</link>
            <description><![CDATA[ New count module fixes!<br />
<br />
I tried to validate my site with the html validation service and found out there were a few error in the new_count.php<br />
<br />
Missing &quot;;&quot; in new_count.php<br />
line 128: &#039;&amp;nbsp;&lt;span class=&quot;PhorumNewFlag&quot;&gt;&#039; .<br />
$PHORUM[&quot;DATA&quot;][&quot;NEW_MESSAGES&quot;] .<br />
&#039;&lt;/span&gt;&amp;nbsp;&#039; .<br />
$PHORUM[&quot;DATA&quot;][&quot;LANG&quot;][&quot;new_count_total_new_threads&quot;] .<br />
line 132: &#039;&amp;nbsp;&lt;span class=&quot;PhorumNewFlag&quot;&gt;&#039; .]]></description>
            <dc:creator>Chanh Ong</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 11 Jun 2006 22:42:01 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,112246#msg-112246</guid>
            <title>Re: New message count for future version 5.2</title>
            <link>https://www.phorum.org/support/read.php?16,8802,112246#msg-112246</link>
            <description><![CDATA[ Hi,<br />
<br />
here is a new version which will work with the actual snapshot and with the future version 5.2 of Phorum. ATTENTION: this module version will not work with Phorum 5.1.x!<br />
<br />
Message and thread count values are now formatted by the Phorum core so this module is calculating a wrong total because of the thousands separator.<br />
<br />
The new version correct this error and format also the total with the separators given in the language file.<br />
<br />
<a href="http://www.phorum.org/phorum5/read.php?16,8802,113667#msg-113667" target="_blank" >HTML-error reported by Chanh Ong</a> is fixed also.<br />
<br />
Bye <br />
Oliver<br />
<br />
[Attachement removed. New version available]]]></description>
            <dc:creator>Oliver Riesen-Mallmann</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 21 Apr 2006 10:03:49 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,53593#msg-53593</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,53593#msg-53593</link>
            <description><![CDATA[ Great work B&amp;M. The once hacky module is starting to look like a real polished piece of software :)<br />
<br />
Only downside is the extra db hit with the latest version. (maybe it is as efficient as the previous way of calculating a little bit less tho)]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Tue, 24 Jan 2006 16:03:04 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,53496#msg-53496</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,53496#msg-53496</link>
            <description><![CDATA[ I added a couple of features too and restructured the information for the module a bit. Here&#039;s the changelog and the 1.9 version of the module.<br />
<pre class="bbcode">
    Added a settings screen so now users of this module can choose to
    either show the totals automatically in the header or hack the
    templates to exactly show it where they like it to be.

    Another setting has been added to configure if the totals for
    the index and list pages should be displayed in case no new
    messages are available. Hiding was the default behaviour in the
    previous versions.

    Displaying of forum totals for the list view now also works when in
    threaded view.

    Migrated information about the module from the module code
    to a README and Changelog file.

    Added a new localization option, so languages that use multiple
    plural words can set them in the language strings (you can now
    define the default new_count_single and new_count_multiple, but
    also new_count_2, new_count_3, etc.).

    Added a Dutch translation for the module.</pre>
While testing this module, I did find another issue:<br />
Announcements + replies to announcements are counted as a new message for every forum in the folder the announcement is in. So if you have 5 forums and post a new announcement, the new message count will be 5. The same way like Phorum will add a new flag to each forum in this case. The new flag isn&#039;t a real problem I think, but it would be good if the new count would at least be 1. This is probably something that has to be fixed in the Phorum db-layers.<br />
<br />
<i>Edit: attachments deleted, because a new version was released.</i>]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 22 Jan 2006 14:54:36 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,52452#msg-52452</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,52452#msg-52452</link>
            <description><![CDATA[ blm, do you have a screenshot of how this looks like?]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Thu, 15 Dec 2005 03:40:46 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,52447#msg-52447</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,52447#msg-52447</link>
            <description><![CDATA[ I have made some changes to this code.  It addresses a couple of issues that Panu had.  In addition, it add a total new thread count and adds the total posts and threads to the index.php page as well.]]></description>
            <dc:creator>Brian Moon</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Wed, 14 Dec 2005 23:00:52 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,16678#msg-16678</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,16678#msg-16678</link>
            <description><![CDATA[ Added total new messages in all threads by CBiLL&#039;s request.<br />
<br />
Localisation of it kind of sucks, but modules lang-string wasn&#039;t visible to list-template for some reason so I had to parse the whole sucker in the module,<br />
<br />
Works for me, but if you have read all messages in this thread, you can see there has been some weird errors...]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Thu, 12 May 2005 17:29:40 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,16541#msg-16541</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,16541#msg-16541</link>
            <description><![CDATA[ tkt Wrote:<br />
&gt; Two possible solutions (with polish translation<br />
&gt; files) in attachments<br />
&gt; (The 1st looks, maybe, more universal, but when<br />
&gt; I&#039;ve written it I saw, that something like the 2nd<br />
&gt; one would be better)<br />
<br />
Wersja 1 za cholere nie dzia³a po polsku.<br />
<br />
Ale w sumie ³adnie zrobione gratuluje<br />
]]></description>
            <dc:creator>regdos.com</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Tue, 10 May 2005 13:07:41 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,16352#msg-16352</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,16352#msg-16352</link>
            <description><![CDATA[ I keep getting these errors when I&#039;m using one template:<br />
<br />
<br />
<br />
Warning: array_diff(): Argument #1 is not an array in /home/wtower/public_html/phorum/mods/new_count/new_count.php on line 39<br />
<br />
Warning: Invalid argument supplied for foreach() in /home/wtower/public_html/phorum/mods/new_count/new_count.php on line 44]]></description>
            <dc:creator>M@AATW</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Thu, 05 May 2005 09:41:51 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,16058#msg-16058</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,16058#msg-16058</link>
            <description><![CDATA[ I&#039;ve tried to make polish translation of the language file, but it isn&#039;t possible yet.<br />
The problem is that in polish there are diferent word for 2, 3 or 4 new items, and different for 5 and more, like following:<br />
<br />
1 nowy<br />
2,3,4 (also 22,23,24,32,33,34 etc.) nowe<br />
5 nowych<br />
<br />
Two possible solutions (with polish translation files) in attachments<br />
(The 1st looks, maybe, more universal, but when I&#039;ve written it I saw, that something like the 2nd one would be better)<br />
<br />
This hanges would be usefull while making other slavonic-languages translations.<br />
<br />
ps. If you want to see it working, look at [<a href="http://puszkin.org/" target="_blank"  rel="nofollow">puszkin.org</a>]]]></description>
            <dc:creator>tkt</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sat, 23 Apr 2005 12:50:11 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,14030#msg-14030</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,14030#msg-14030</link>
            <description><![CDATA[ we will never add something like that to the core-distribution.<br />
even if its an option or you only add &quot;new&quot; (which doesn&#039;t make much of a difference) it will make the index-page slow as hell with firing dozens of queries just for listing how many new messages are in a folder and all subsequent forums.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Mon, 14 Feb 2005 03:23:39 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,14024#msg-14024</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,14024#msg-14024</link>
            <description><![CDATA[ We can keep this feature as an &quot;option&quot;. This is a very handy feature expecially for those forums where you want to have folders on the main page and still want the users to come to know about the new postings. Or option can also be kept for only &quot;new&quot; appearing instead of the message count.<br />
]]></description>
            <dc:creator>nikhil</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 13 Feb 2005 18:02:11 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,14023#msg-14023</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,14023#msg-14023</link>
            <description><![CDATA[ have fun with the load on the server this would create. ]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 13 Feb 2005 17:54:55 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,14020#msg-14020</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,14020#msg-14020</link>
            <description><![CDATA[ I have another suggestion. Once implemented, this would make this module real useful and worth including with the original phorum distribution.<br />
Suppose, I have made some folders in phorum and have forums inside them. Now, I should get the new message count next to the folders also? What I mean is, suppose I have a folder &quot;bla Folder&quot; and there are 3 forums in it f1, f2 and f3. Now suppose a new post is done in f2, then, next to the bla Folder on the main page, (1 new) appears.<br />
]]></description>
            <dc:creator>nikhil</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Sun, 13 Feb 2005 16:58:39 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,13135#msg-13135</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,13135#msg-13135</link>
            <description><![CDATA[ Sorry, my mistake, I should have said either:<br />
<br />
if messageid &gt; $PHORUM[&#039;user&#039;][&#039;newinfo&#039;][&#039;min_id&#039;]<br />
<br />
then I count message as new<br />
<br />
or <br />
<br />
messageid &lt; $PHORUM[&#039;user&#039;][&#039;newinfo&#039;][&#039;min_id&#039;]<br />
<br />
then I don&#039;t count message as new.<br />
<br />
So I do exactly the same as main phorum code? What could be the reason for threaded read to have &quot;new&quot; attached to messages that have messageid &lt; minid?<br />
<br />
]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Wed, 19 Jan 2005 02:59:37 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,13133#msg-13133</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,13133#msg-13133</link>
            <description><![CDATA[ you shouldn&#039;t count as new if *smaller* than min_id.<br />
<br />
all messages with a smaller id than min_id are taken as old/read.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Wed, 19 Jan 2005 02:31:35 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,13120#msg-13120</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,13120#msg-13120</link>
            <description><![CDATA[ Ok I kind of found the problem, but I&#039;m not sure what&#039;s right.<br />
<br />
I don&#039;t count message as new if <br />
messageid &gt; $PHORUM[&#039;user&#039;][&#039;newinfo&#039;][&#039;min_id&#039;]<br />
<br />
Phorum shouldn&#039;t either, but it does...<br />
<br />
<pre class="bbcode">
if (!isset($PHORUM[&#039;user&#039;][&#039;newinfo&#039;][$row[&#039;message_id&#039;]]) &amp;&amp; $row[&#039;message_id&#039;] &gt; $PHORUM[&#039;user&#039;][&#039;newinfo&#039;][&#039;min_id&#039;]) {
    $messages[$key][&quot;new&quot;]=&quot; &quot; . $PHORUM[&quot;DATA&quot;][&quot;LANG&quot;][&quot;newflag&quot;];
}</pre>
<br />
Or have I understood min_id wrong?<br />
<br />
Anyway attached is new version of the mod, I fixed a problem when showing old messages]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Tue, 18 Jan 2005 17:34:27 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,13114#msg-13114</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,13114#msg-13114</link>
            <description><![CDATA[ Thankyou for testing. <br />
<br />
I tested my own phorum and I get the correct amount every time. I found another problem thou which I&#039;m fixing tonight.<br />
<br />
There&#039;s not many places where it can go wrong on the mod, it basically just removes already read message id&#039;s from an array and count&#039;s the remaining array.<br />
<br />
So the only thing that comes to my mind is that you run out of newflags? On the other hand you shouldn&#039;t see the &quot;new&quot; next to the subject in threaded view either? I quess.<br />
<br />
Additionally I don&#039;t calc the message as new if the message id is smaller than users newinfo minid <br />
<br />
so if you can find that, for the user and then compare that to the &quot;missing&quot; messages id&#039;s.<br />
<br />
Hmm I don&#039;t know if you understood anything from the above sentence, even I had some difficulties.<br />
]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Tue, 18 Jan 2005 11:11:05 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,13109#msg-13109</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,13109#msg-13109</link>
            <description><![CDATA[ Sorry, it was 1.4, but I&#039;m using 1.5 now. I have List view as Flat and Read view as Threaded. Example:<br />
<br />
[<a href="http://age.salsashark.net/misc/newflag1.jpg" target="_blank"  rel="nofollow">age.salsashark.net</a>]<br />
<br />
Note, for example, the &quot;New Recruit&quot; thread. It just reports &quot;new&quot; but in the read view you can see there are quite a few:<br />
<br />
[<a href="http://age.salsashark.net/misc/newflag2.jpg" target="_blank"  rel="nofollow">age.salsashark.net</a>]<br />
<br />
This happens in several threads. Another example is the &quot;Outstanding wrestler&quot; thread which shows 11 new, but actually has 15 new:<br />
<br />
[<a href="http://age.salsashark.net/misc/newflag3.jpg" target="_blank"  rel="nofollow">age.salsashark.net</a>]]]></description>
            <dc:creator>SalsaShark</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Tue, 18 Jan 2005 09:50:14 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,13036#msg-13036</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,13036#msg-13036</link>
            <description><![CDATA[ new version...<br />
<br />
added support for Phorums module localisation feature add fixed some cosmetic things.<br />
<br />
Thread new message counting error not fixed because I&#039;m not able to reproduce it.<br />
]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 14 Jan 2005 17:35:32 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,13025#msg-13025</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,13025#msg-13025</link>
            <description><![CDATA[ Well that&#039;s the still unreleased version... :) 1.4 is the latest I have uploaded.<br />
<br />
but anyway can you give the following information:<br />
<br />
what are the Thread Override fileds saying in your profile?<br />
<br />
I only get &quot;new&quot; when threaded view is selected.<br />
<br />
If threaded view is used it returns the messages untouched. I have to double check mixed threaded/list/read case.<br />
<br />
But anyway the counts should be correct assuming Phorum is reporting them correctly.<br />
<br />
Can you attach a screenshot showing the bug?]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 14 Jan 2005 11:09:36 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,13006#msg-13006</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,13006#msg-13006</link>
            <description><![CDATA[ Assuming 1.5 is the latest version, yes.]]></description>
            <dc:creator>SalsaShark</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Fri, 14 Jan 2005 08:07:53 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,12985#msg-12985</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,12985#msg-12985</link>
            <description><![CDATA[ Well I have already done it, haven&#039;t just uploaded it yet.<br />
<br />
I thought that I implement new-notification in read-page before releasing, but now when that&#039;s going to be in v. 5.1 I don&#039;t have to. So I&#039;ll propably upload it tomorrow.]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Thu, 13 Jan 2005 16:11:53 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,12979#msg-12979</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,12979#msg-12979</link>
            <description><![CDATA[ Creating a language file is really easy, you should consider doing it. It&#039;ll also handle upgrades to the module much better then hacking the module code will.]]></description>
            <dc:creator>Chris Eaton</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Thu, 13 Jan 2005 15:56:02 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?16,8802,12958#msg-12958</guid>
            <title>Re: New message count next to &quot;new&quot; in list view</title>
            <link>https://www.phorum.org/support/read.php?16,8802,12958#msg-12958</link>
            <description><![CDATA[ Hmm, works for me? Are you using the latest version?]]></description>
            <dc:creator>Panu</dc:creator>
            <category>5.1 Phorum Modules / Add-Ons</category>
            <pubDate>Thu, 13 Jan 2005 11:54:23 -0600</pubDate>
        </item>
    </channel>
</rss>
