Goodbyte wrote:
Strange... do you have any idea what could cause this problem? I already had this issue with v1.0.4.
But it's no big deal because I simply can remove the unwanted data by editing the template...
Next (very small) issue: If the date of the last posted message is "yesterday" or "today", there is an space missing. It's "<b>today</b>06.08.2008".
You can simply solve it by inserting the space in
| Code: |
return '' . _TIME_TODAY . '' . FB_timeformat($logTime, $today_fmt);
|
to
| Code: |
return '' . _TIME_TODAY . ' ' . FB_timeformat($logTime, $today_fmt);
|
(the same for "TIME_YESTERDAY"
EDIT: Sorry, forgot to mention the file. You hae to apply the patch to /sources/fb_timeformat.class.php
Good idea, but it is supposed to be in the language file. IN English the file looks like this:
| Code: |
DEFINE('_TIME_TODAY', '<b>Today</b> ');
DEFINE('_TIME_YESTERDAY', '<b>Yesterday</b> ');
|
Might want to check your localized version language file.