Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard Spread FireBoard!
Re:Latest SVN - getting ready for 1.0.5 alpha (1 viewing) (1) Guest
Go to bottom Favoured: 6
TOPIC: Re:Latest SVN - getting ready for 1.0.5 alpha
#52600
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 4 Weeks ago  
I've copied the text from html into an editor. Now, after updating this file, it works for me, too.

EDIT: Have made some German translations (mostly additions to v2.9 translation) on my side. It's working, too.

BTW. ... "Default" is missing in dropdown box (week, month, hours, ...) on recent discussions view in Default Ex template
mcrollo (User)
Senior Boarder
Posts: 113
graphgraph
User Offline Click here to see the profile of this user
Gender: Male mcrollo_hi roland rockt es mcrollo Location: Germany Birthdate: 1963-02-03
Logged Logged
 
Last Edit: 2008/06/27 04:53 By mcrollo.
 
The administrator has disabled public write access.  
#52602
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 4 Weeks ago  
mcrollo wrote:

BTW. ... "Default" is missing in dropdown box (week, month, hours, ...) on recent discussions view in Default Ex template


I did that on purpose as Default does not tell anybody how much time. 1 Month is the default for the look back and so I choose Month as the text string. Comments?
fxstein (Moderator)
FB Core Team
starVmax
Moderator
Posts: 1210
graphgraph
User Offline Click here to see the profile of this user
Gender: Male fxstein starVmax Location: Silicon Valley, USA
Logged Logged
 
 
The administrator has disabled public write access.  
#52604
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 4 Weeks ago  
what the heck is SVN???
nighthawknz (User)
Blah blah blah rant rave
Junior Boarder
Posts: 37
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Location: Dunedin, NZ
Logged Logged
 
 
The administrator has disabled public write access.  
#52607
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 4 Weeks ago  
Through this weekend I will post patches for SVN, which are all well tested and used on our site (at least for more than 6 months). For each of them I will write, what's covered by them.
Please try to include them to the 1.0.5 version and also if related to 1.1, try to include them also there.
administrator/components/com_fireboard/admin.fireboard.php
Line 64
Code:

if (mysql_num_rows(mysql_query("SHOW TABLES LIKE '" . $table_nm . "'"))) {

replace with
Code:

$database->setQuery("SHOW TABLES LIKE '" . $table_nm . "'");
$database->query();
if ($database->getNumRows()) {


Covered: J1.5 incompatibility
jerry (User)
Senior Boarder
Posts: 156
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/06/27 10:54 By jerry.
 
The administrator has disabled public write access.  
#52608
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 4 Weeks ago  
components/com_fireboard/fireboard.php
Insert before line 139
Code:

$msgbody = ereg_replace('%u0([[:alnum:]]{3})', '',$msgbody);

Covered: Accented characters aren't correctly shown on preview.
jerry (User)
Senior Boarder
Posts: 156
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#52609
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 4 Weeks ago  
components/com_fireboard/sources/fb_rss.php
Lines 110-113
Code:

                echo sefRelToAbs(JB_LIVEURLREL . "&func=view&id=" . $row->id . "&catid=" . $row->catid);
            }
            else {
                echo $mosConfig_live_site . "/index.php?option=com_fireboard" . FB_FB_ITEMID_SUFFIX . "&func=view&id=" . $row->id . "&catid=" . $row->catid;


replace with
Code:

                echo sefRelToAbs(JB_LIVEURLREL . "&func=view&id=" . $row->id . "&catid=" . $row->catid . "#" . $row->id);
            }
            else {
    echo $mosConfig_live_site . "/index.php?option=com_fireboard" . FB_FB_ITEMID_SUFFIX . "&func=view&id=" . $row->id . "&catid=" . $row->catid . "#" . $row->id;


Covered: Links in RSS points to the page (after directly to the post on the page).
jerry (User)
Senior Boarder
Posts: 156
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/06/27 12:03 By jerry.
 
The administrator has disabled public write access.  
#52610
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 4 Weeks ago  
components/com_fireboard/template/default/fb_pathway.php
Lines: 47-49
Code:

            $results = $database->query();
            $parent_ids = @mysql_result($results, 0, 'parent');
            $fr_name = @trim(mysql_result($results, 0, 'name'));


replace with
Code:

$database->loadObject($results);
$parent_ids = $results->parent;
$fr_name = $results->name;


Covered: J1.5 incompatibility
jerry (User)
Senior Boarder
Posts: 156
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#52612
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 4 Weeks ago  
components/com_fireboard/template/default/listcat.php
Lines: 118 & 210 (same patch 2 times used in file)
Code:

            $letPass = fb_has_read_permission($obj_fb_cat, $allow_forum, $aro_group->group_id, $acl);

replace with
Code:

$j15 = FBTools::isJoomla15();
if ($j15) {
$letPass = fb_has_read_permission($obj_fb_cat, $allow_forum, $aro_group->id, $acl);
} else {
$letPass = fb_has_read_permission($obj_fb_cat, $allow_forum, $aro_group->group_id, $acl);
}


Covered: J1.5 incompatibility
jerry (User)
Senior Boarder
Posts: 156
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/06/27 12:02 By jerry.
 
The administrator has disabled public write access.  
#52614
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 4 Weeks ago  
components/com_fireboard/template/default/post.php
Line: 1917
Code:

        $database->setQuery("SELECT * FROM #__fb_messages LEFT JOIN #__fb_messages_text ON #__fb_messages.id=#__fb_messages_text.mesid WHERE thread='$thread' OR id='$thread' AND hold = 0 ORDER BY time DESC LIMIT " . $fbConfig['historyLimit']);

replace with
Code:

      $database->setQuery("SELECT * FROM #__fb_messages LEFT JOIN #__fb_messages_text ON #__fb_messages.id=#__fb_messages_text.mesid WHERE (thread='$thread' OR id='$thread') AND hold = 0 ORDER BY time DESC LIMIT " . $fbConfig['historyLimit']);

Covered: bad operator precedence; Unapproved messages seen in preview when posting in the topic.
jerry (User)
Senior Boarder
Posts: 156
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#52617
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 4 Weeks ago  
components/com_fireboard/template/ default/view.php
Lines: before 572, before 597
Code:

{

Code:

}

Covered: if you disable show ranking, moderators and administrators are ranked anyway.
Line: 871
Code:

if ($userinfo->birthdate !='0001-01-01' AND $userinfo->birthdate !='0000-00-00') {

replace with
Code:

if ($userinfo->birthdate !='0001-01-01' AND $userinfo->birthdate !='0000-00-00' AND $userinfo->birthdate!='') {

Covered: birthdate cake shown for guests
jerry (User)
Senior Boarder
Posts: 156
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
Go to top