Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
The FireBoard forum component development is still going on. In order to get better, FireBoard will be moved from the Best of Joomla website.
During this transition period, the forum in Best of Joomla will be closed to new posts.
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard
Nightly Build 1.0.5NB8 posted (1 viewing) (1) Guest
TOPIC: Nightly Build 1.0.5NB8 posted
#55481
Re:Nightly Build 1.0.5NB8 posted 5 Months ago  
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.
fxstein (Moderator)
FB Core Team
starVmax
Moderator
Posts: 1213
graphgraph
User Offline Click here to see the profile of this user
Gender: Male fxstein starVmax Location: Silicon Valley, USA
Logged Logged
 
 
 
#55486
Re:Nightly Build 1.0.5NB8 posted 5 Months ago  
That's a quite simple solution... But is there any (or could you imagine any) example where you don't want this additional space? If there is any example I'm fine, but I really can't imagine at least one example.
Goodbyte (User)
Junior Boarder
Posts: 85
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#55487
Re:Nightly Build 1.0.5NB8 posted 5 Months ago  
Goodbyte wrote:
That's a quite simple solution... But is there any (or could you imagine any) example where you don't want this additional space? If there is any example I'm fine, but I really can't imagine at least one example.

You might be completly right. See I was no around when most of that code for 1.0 was written. I am just fixing what others left behind. Need to keep it simple so I can do work on 2.0 - a whole new story...
fxstein (Moderator)
FB Core Team
starVmax
Moderator
Posts: 1213
graphgraph
User Offline Click here to see the profile of this user
Gender: Male fxstein starVmax Location: Silicon Valley, USA
Logged Logged
 
 
 
#55489
Re:Nightly Build 1.0.5NB8 posted 5 Months ago  
fxstein (Moderator)
FB Core Team
starVmax
Moderator
Posts: 1213
graphgraph
User Offline Click here to see the profile of this user
Gender: Male fxstein starVmax Location: Silicon Valley, USA
Logged Logged
 
 
 
Go to top