<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Module: Readable Dates and Concealed Times</title>
        <description>Make dates easier to read for humans, by using relative indications like &quot;two hours ago&quot;, &quot;yesterday, 12:30&quot;, &quot;today, 17:52&quot;, &quot;two weeks ago&quot;, &quot;last year&quot;, etc.

Conceals message timestamp for messages older than 24 hours. Don&#039;t let your boss know that you wrote at work ...

All date indications can be customized through the language files.

Tested on version 5.2.20

This is a full rewrite of the Readable Dates module that was written for Phorum 5.1. Thanks to the new features in 5.2, I could get rid of some nasty constructions that were needed the 5.1 module.

[b]Integration with other modules[/b]

Other modules or scripts that want to make use of the readable date formatting, can make use of a special hook call that is implemented by this module. If currently code like this is used for formatting:
[code]
    $date = phorum_date($PHORUM[&quot;short_date_time&quot;], $time);
[/code]
then it can be replaced with this:
[code]
  if (!empty($PHORUM[&#039;hooks&#039;][&#039;format_readable_date&#039;])) {
      $date = phorum_hook(&#039;format_readable_date&#039;, $time);
  } else {
      $date = phorum_date($PHORUM[&quot;short_date_time&quot;], $time);
  }
[/code]

[code]
Changelog:
----------

2016-08-31 version 1.2.1 by Oliver Riesen-Mallmann 

    - Made XHTML 1.0 Transitional compliant.

2016-07-27 version 1.2.0 by Oliver Riesen-Mallmann 

    - Module renamed to &quot;Readable Dates and Concealed Times Module&quot;.

    - Functions of the &quot;Conceal Message Timestamp Module&quot; included. Formatting
      date and times in two separate modules didn&#039;t work well.

    - Fixed formatting for the announcement module.

    - README extended (license, module settings, language support, dependencies
      and GitHub link added).

    - Performance improvements.

    - Sanity checks added.

2015-09-18 v1.1.12 Oliver Riesen 

    - Fixed undefined index warning.

    - Performance improvements.

    - Added Greek language file. Thanks to Thanos.

2011-01-09 v1.1.11

    - Added new German language files. Thanks to Oliver Riesen!

2010-04-26 v1.1.10

    - The original dates are now available as $data[&#039;orig_&#039;], so
      they can still be accessed when needed from the templates.

2009-08-26 v1.1.9

    - Added support for the Russian language. Also added a Russian language
      file. Thanks to phorum.org user sailord for the translation!

    - Added a Spanish translation. Thanks to Chris Brown!

    - Added a French translation. Thanks to phorum.org user manuvb!

2008-12-14 v1.1.8

    - Fixed a typo that caused &quot;date_last_active&quot; for the user profile
      screen to never be formatted by this module.

2008-07-25 v1.1.7

    - Added a switch in the module config to enable/disable the formatting
      of the user registration date on the read pages (Registered: ... ago).
      If this switch is enabled, then dates after the configured time
      limit will be formatted using a standard short date. This is different
      from Phorum&#039;s default behavior, because by default Phorum would
      use a readable date-like formatting for this date already.

2008-05-28 v1.1.6

    - Another undefined index warning fixed and again it was CBiLL
      who was kind enough to be the lab rat.

2008-03-26 v1.1.5

    - Some more undefined index warnings fixed. These would occur if user
      activity tracking is disabled or if the user hides its activity
      through the privacy settings. Thanks to CBiLL for the report!

    - A configuration option was added to make it possible to disable
      the readable numbers (one, two, three instead of 1, 2, 3).

2008-03-11 v1.1.4

    - Fixes for some undefined index warnings in readable_dates.php.
      Thanks to CBiLL for the heads up!

2008-03-03 v1.1.3

    - Added support for formatting dates in the private message and buddy
      interfaces (pm list, pm read, buddy list). These features need Phorum
      version 5.2.7 or higher (the admin interface will warn about this if
      an older version of Phorum is used).

2008-03-02 v1.1.2

    - Added an option to specify the maximum time for which a date
      should be formatted by this module. Dates that are older will be
      displayed using their original formatting. Thanks to CBiLL for
      the feature suggestion.

    - Fixed a bug, which resulted in empty dates being formatted as
      if the date was Januari 1st, 1970 (Epoch zero). Thanks to
      CBiLL for the bug report.

2008-03-01 v1.1.1

    - Added a better German translation to the package. Thanks to Thomas
      for fixing my crappy German translation!

    - Fixed the formatting code to make sure that it will work
      correctly in localized environments.

2008-03-01 v1.1.0

    - Rewrote the module to be compatible with 5.2 and to make full
      use of new Phorum features.

2006-05-08 v1.0.7 and bofore

    - Stripped these change logs, as then don&#039;t have a relation to the new code anymore.
[/code]</description>
        <link>https://www.phorum.org/support/read.php?62,128691,128691#msg-128691</link>
        <lastBuildDate>Tue, 08 Sep 2026 10:27:30 -0500</lastBuildDate>
        <generator>Phorum 6.0.4</generator>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,160803#msg-160803</guid>
            <title>Re: Module: Readable Dates and Concealed Times</title>
            <link>https://www.phorum.org/support/read.php?62,128691,160803#msg-160803</link>
            <description><![CDATA[ New Version:<br />
<br />
<pre class="bbcode">
2016-08-31 version 1.2.1 by Oliver Riesen-Mallmann &lt;oliver@riesen.org&gt;
     - Made XHTML 1.0 Transitional compliant.
</pre>]]></description>
            <dc:creator>Oliver Riesen-Mallmann</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 31 Aug 2016 08:33:06 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,160684#msg-160684</guid>
            <title>Re: Module: Readable Dates and Concealed Times</title>
            <link>https://www.phorum.org/support/read.php?62,128691,160684#msg-160684</link>
            <description><![CDATA[ New version 1.2.0:<br />
<br />
<pre class="bbcode">
2016-07-27 version 1.2.0 by Oliver Riesen-Mallmann &lt;oliver@riesen.org&gt;
- Module renamed to &quot;Readable Dates and Concealed Times Module&quot;.
- Functions of the &quot;Conceal Message Timestamp Module&quot; included. Formatting
  date and times in two separate modules didn&#039;t work well.
- Fixed formatting for the announcement module.
- README extended (license, module settings, language support, dependencies
  and GitHub link added).
- Performance improvements.
- Sanity checks added.
</pre>]]></description>
            <dc:creator>Oliver Riesen-Mallmann</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Thu, 28 Jul 2016 02:56:00 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,156141#msg-156141</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,156141#msg-156141</link>
            <description><![CDATA[ I&#039;m on the work for a new version 1.2.0 which will include the functions of the <a href="http://www.phorum.org/phorum5/read.php?62,129359" target="_blank" >Conceal Timestamps Module</a> ...]]></description>
            <dc:creator>Oliver Riesen-Mallmann</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Thu, 01 Oct 2015 03:11:58 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,156109#msg-156109</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,156109#msg-156109</link>
            <description><![CDATA[ New version 1.1.12:<br />
<br />
<pre class="bbcode">
2015-09-18 v1.1.12 Oliver Riesen &lt;oliver@riesen.org&gt;

    - Fixed undefined index warning.

    - Performance improvements.

    - Added Greek language file. Thanks to Thanos.
</pre>]]></description>
            <dc:creator>Oliver Riesen-Mallmann</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Fri, 18 Sep 2015 07:14:38 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,147943#msg-147943</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,147943#msg-147943</link>
            <description><![CDATA[ Greek (UTF-8) translation attached to this file.<br />
<br />
Thanks for the mod!<br />
<br />
[File removed; now included in the module]]]></description>
            <dc:creator>Thanos</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 01 Mar 2011 05:07:17 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,144236#msg-144236</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,144236#msg-144236</link>
            <description><![CDATA[ Released version 1.1.10: the original dates are now available as $data[&#039;orig_&lt;datefield&gt;&#039;], so they can still be accessed when needed from the templates.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 26 Apr 2010 10:14:01 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,143744#msg-143744</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,143744#msg-143744</link>
            <description><![CDATA[ *self-deleted*]]></description>
            <dc:creator>Voltius</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 22 Mar 2010 20:42:52 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,142711#msg-142711</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,142711#msg-142711</link>
            <description><![CDATA[ Sorry,<br />
<br />
I skimmed the previous messages too quickly.   <blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />I included the latest version in the package.</div></blockquote>
I took this to mean &quot;Phorum package&quot;, my error.<br />
<br />
Scott]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Thu, 14 Jan 2010 09:49:49 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,142696#msg-142696</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,142696#msg-142696</link>
            <description><![CDATA[ what is &quot;this&quot;? The module can be turned off in the admin like every other module.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Thu, 14 Jan 2010 08:05:25 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,142695#msg-142695</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,142695#msg-142695</link>
            <description><![CDATA[ Did I miss a setting for turning this off? <br />
<br />
phorum-5.2.14<br />
<br />
Scott]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Thu, 14 Jan 2010 08:01:29 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,140413#msg-140413</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,140413#msg-140413</link>
            <description><![CDATA[ Then I had the same thought ... Thanks for including it for the next version!]]></description>
            <dc:creator>korsakov</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 01 Sep 2009 17:23:54 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,140411#msg-140411</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,140411#msg-140411</link>
            <description><![CDATA[ Well, there is no configuration option for that in the admin module settings, so that kind of gives you the answer. I did not build readable dates for that page. I can keep it in mind for a future version.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 01 Sep 2009 17:18:54 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,140408#msg-140408</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,140408#msg-140408</link>
            <description><![CDATA[ Is the &quot;Follow Threads&quot; page within the account settings not meant to be included for the &quot;Readable Dates&quot; module?]]></description>
            <dc:creator>korsakov</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 01 Sep 2009 15:42:06 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,140392#msg-140392</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,140392#msg-140392</link>
            <description><![CDATA[ And thank you for bringing it up!]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 01 Sep 2009 01:38:21 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,140384#msg-140384</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,140384#msg-140384</link>
            <description><![CDATA[ I tested, and it&#039;s fine. Thank you, Maurice :)]]></description>
            <dc:creator>sailord</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 31 Aug 2009 18:30:13 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,140229#msg-140229</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,140229#msg-140229</link>
            <description><![CDATA[ I included the latest version in the package.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 26 Aug 2009 12:39:58 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,140220#msg-140220</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,140220#msg-140220</link>
            <description><![CDATA[ Looks nice :) But I have to test it few days. <br />
There were mistakes in my lang file. So, please replace it with new one<br />
<br />
<i>mmakaay: removed the attachment. The language file is now included in the package.</i>]]></description>
            <dc:creator>sailord</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 26 Aug 2009 04:41:51 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,140214#msg-140214</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,140214#msg-140214</link>
            <description><![CDATA[ Ah right, I see. Almost 3:30am here, so I&#039;m losing some of my sharpness ;-) I&#039;ll incorporate this into the module core. Maybe still a bit more generic than with _234<br />
<br />
<pre class="bbcode">
    &#039;seconds_ago_0&#039;    =&gt; &#039;сейчас&#039;,
    &#039;seconds_ago_x1&#039;   =&gt; &#039;секунду назад&#039;,
    &#039;seconds_ago_x2&#039;   =&gt; &#039;%count% секунды назад&#039;,
    &#039;seconds_ago_x3&#039;   =&gt; &#039;%count% секунды назад&#039;,
    &#039;seconds_ago_x4&#039;   =&gt; &#039;%count% секунды назад&#039;,
    &#039;seconds_ago_x&#039;    =&gt; &#039;%count% секунд назад&#039;,</pre>
<br />
So, with the &quot;x&quot; as a sort of wildcard, where x2 means &quot;number ends on 2&quot;.<br />
<br />
<b>Update:</b> I implemented this idea in the module and I updated your language file to use the above schema. Can you please try if v1.1.9 of the module works for you out-of-the-box?]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 25 Aug 2009 20:26:04 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,140213#msg-140213</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,140213#msg-140213</link>
            <description><![CDATA[ wrong is that we should write <br />
<pre class="bbcode">

&#039;seconds_ago_2&#039;   =&gt; &#039;%count% секунды назад&#039;,
&#039;seconds_ago_22&#039;   =&gt; &#039;%count% секунды назад&#039;,
&#039;seconds_ago_32&#039;   =&gt; &#039;%count% секунды назад&#039;,
&#039;seconds_ago_44   =&gt; &#039;%count% секунды назад&#039;,</pre>
<br />
and so on.<br />
<br />
it will be realy large lang file :)<br />
And as far as I know, Spanish users will have the same situation<br />
<br />
You are right, it&#039;s very specific hack :) so I don&#039;t recommend to use it for other languages, because it can cause mistakes]]></description>
            <dc:creator>sailord</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 25 Aug 2009 20:16:54 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,140210#msg-140210</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,140210#msg-140210</link>
            <description><![CDATA[ I think that is a rather specific hack, since there are other languages for which some other combination would be required. What&#039;s wrong with doing this in the language file (except for &quot;It wears out my C and V keys on the keybaord ;-) ?<br />
<br />
<pre class="bbcode">
    &#039;seconds_ago_0&#039;   =&gt; &#039;сейчас&#039;,
    &#039;seconds_ago_1&#039;   =&gt; &#039;секунду назад&#039;,
    &#039;seconds_ago_2&#039;   =&gt; &#039;%count% секунды назад&#039;,
    &#039;seconds_ago_3&#039;   =&gt; &#039;%count% секунды назад&#039;,
    &#039;seconds_ago_4&#039;   =&gt; &#039;%count% секунды назад&#039;,
    &#039;seconds_ago_x&#039;   =&gt; &#039;%count% секунд назад&#039;,
</pre>]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 25 Aug 2009 20:12:19 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,140209#msg-140209</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,140209#msg-140209</link>
            <description><![CDATA[ Russian language is much harder than english in case of numbers. If last digit of some number ends with 1 (101, 151, 100001,  etc BUT not 11),  we use one suffix fow &quot;hour&quot; word. If number ends with 2,3 or 4 (243, 784, etc) we use another suffix...<br />
So Russian users should use my fix of date_format.php and my new version of lang file.<br />
I believe that my fix to date_format.php shoudn&#039;t break numbering in English, but I&#039;m not sure right now.<br />
<br />
<i>mmakaay: removed attachment; the required functionality has been included in the package.</i>]]></description>
            <dc:creator>sailord</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 25 Aug 2009 20:01:06 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,140208#msg-140208</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,140208#msg-140208</link>
            <description><![CDATA[ Thanks for module.<br />
here is a russian langfile attached<br />
<br />
<i>mmakaay: removed the attachment. The language file is now included in the package.</i>]]></description>
            <dc:creator>sailord</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 25 Aug 2009 19:18:42 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,139922#msg-139922</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,139922#msg-139922</link>
            <description><![CDATA[ I gave it another thought and this might have something to do with the fact that &quot;not more than two days old&quot; doesn&#039;t really mean &quot;today and yesterday&quot;. &quot;It means &quot;posted within the last 48 hours&quot;. So if you post something at 01:00am, then there&#039;s 1 hour in today, 24 hours in yesterday and 23 hours in two days ago.<br />
<br />
What this would require (not a bad change so I&#039;ll look into it) is that readable dates becomes day-away, so it will match the &quot;x days ago&quot; to what the user expects.<br />
<br />
The reason that it is currently somewhat counter-intuitive, is that the &quot;x days ago&quot; was built up from &quot;x seconds ago&quot; -&gt; &quot;x minutes ago&quot; -&gt; &quot;x hours ago&quot;. For those it makes sense to look at the time interval. For days and higher however, day/date awareness might be a better approach.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sun, 09 Aug 2009 17:59:41 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,139921#msg-139921</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,139921#msg-139921</link>
            <description><![CDATA[ It was showing for all of the two day old posts. I set it back to &quot;2 day&quot; (had it on &quot;1 day&quot; last night, so I wouldn&#039;t see the &quot;two days old&quot; listings while I worked). I went and searched for some two day old posts, and found some dated as early as August 07, 2009 02:07AM and as late as August 07, 2009 02:40PM. Odd thing is, it doesn&#039;t say &quot;two day old&quot; for them anymore, it just lists the date. If I set the option to &quot;3 day&quot; is when these change back to &quot;two days old&quot;. It&#039;s strange, but I think the glitch reverted to normal. I have absolutely no idea how though. I didn&#039;t re-upload the module, and the settings for the mod are the same as they were a few days ago when the glitch was going on. I can now see just the &quot;Yesterday&quot; and &quot;Today&quot; statements, haven&#039;t found any &quot;two day old&quot; ones yet.]]></description>
            <dc:creator>Ryan</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sun, 09 Aug 2009 16:18:14 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,139909#msg-139909</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,139909#msg-139909</link>
            <description><![CDATA[ I tried it, but I cannot reproduce it.<br />
Do you see &quot;2 days ago&quot; for every 2 days old post or is this only showing for some of them?]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sun, 09 Aug 2009 07:10:59 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,139907#msg-139907</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,139907#msg-139907</link>
            <description><![CDATA[ Sorry I wasn&#039;t more specific. With &quot;2 day&quot; and &quot;1 day&quot;, I&#039;m speaking of the module&#039;s settings. I use the following settings:<br />
<br />
What granularity would you like to use? days<br />
<br />
What is the time limit that you want to use for formatting? 2 days<br />
<br />
I only want the readable date to go as far back as to say &quot;yesterday&quot;, and to display the &quot;today&quot; dates for posts made that same day. For anything longer, like where it would say &quot;two days ago&quot; and farther, I just want it to display the regular date.<br />
<br />
When choose 1 day, it only displays &quot;today&quot;, and if I choose &quot;2 days&quot;, it will display &quot;yesterday&quot; but it also displays &quot;2 days ago&quot; as well.<br />
<br />
Sorry if I&#039;m still not making sense, I&#039;m not great with words.<br />
<br />
Today (check)<br />
Yesterday (check)<br />
Two days ago (nu! Get outta here! *kicks*)]]></description>
            <dc:creator>Ryan</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sat, 08 Aug 2009 19:52:52 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,139906#msg-139906</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,139906#msg-139906</link>
            <description><![CDATA[ I&#039;m not sure I fully get what you&#039;re saying. I do get the requirement, but I don&#039;t see what you did with the 2 days and 1 day thing. If it&#039;s just some language string issues, then you could change mods/readable_dates/lang/english.php, but I&#039;m not sure if that&#039;s what you&#039;re talking about here. Possibly a bug, but then I&#039;d have to install the module here. I don&#039;t have it running currently.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sat, 08 Aug 2009 17:39:53 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,139903#msg-139903</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,139903#msg-139903</link>
            <description><![CDATA[ Is there a way to just have just &quot;today&quot; and &quot;yesterday&quot; display, but have everything else be the date? When I check &quot;2 days&quot;, I get some that say &quot;two days old&quot;, and if I do &quot;1 day&quot;, it&#039;s just the &quot;today&quot; posts.]]></description>
            <dc:creator>Ryan</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sat, 08 Aug 2009 17:20:34 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,138902#msg-138902</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,138902#msg-138902</link>
            <description><![CDATA[ please post this in thread for the appropriate module.<br />
also I don&#039;t see the &quot;as it is shown in your forums&quot; as this module isn&#039;t installed here.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Fri, 26 Jun 2009 06:04:29 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,128691,138901#msg-138901</guid>
            <title>Re: Module: Readable Dates</title>
            <link>https://www.phorum.org/support/read.php?62,128691,138901#msg-138901</link>
            <description><![CDATA[ Oh, ok. It works now, thanks a lot. There is another question and it concerns the &quot;last_forum_post&quot; module:<br />
<br />
Now it displays the whole last subject and the author. I just want to display &quot;last post&quot; from &quot;author&quot; and the &quot;last post&quot; should be the link to the subject...as it is shown in yopur forums.<br />
<br />
Greetings]]></description>
            <dc:creator>discdog</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Fri, 26 Jun 2009 04:58:51 -0500</pubDate>
        </item>
    </channel>
</rss>
