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
Re:Deafult_ex bug (i think) (1 viewing) (1) Guest
Go to bottom Favoured: 0
TOPIC: Re:Deafult_ex bug (i think)
#54284
Deafult_ex bug (i think) 4 Months, 2 Weeks ago  
when i click on the forum tab the default_ex theme show me the lastest topic with replies ount. also in the right there is a page navigation system and when i click to go at a specific page the forum redirect me to categories page.

Another:
while i'm reading a post when i click on page number or "Previus" or "Next" link the system send me to the last page of the discussion.

Is it possible to fix? These are problem i cannot fix right now.
LoSpo (User)
Junior Boarder
Posts: 29
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#54717
Re:Deafult_ex bug (i think) 4 Months, 1 Week ago  
thats because its a bug in the default_ex template. line 276 in flat.php of the default _ex reads as:

Code:

echo '<a href="' . sefRelToAbs(JB_LIVEURLREL . '&amp;func=view&amp;id=' . $leaf->id . $viewstr . '&amp;catid=' . catid) . '">1</a>'; 


if you notice that the url when you click the pagination the catid=0
this means it will just send you to the categories.

i tried editing that line into this:
Code:


echo '<a href="' . sefRelToAbs(JB_LIVEURLREL . '&amp;func=view&amp;id=' . $leaf->id . $viewstr . '&amp;catid=' . $leaf->catid) . '">1</a>'; 



the page one works however the page two and page three and so on still results to ZERO in cat id.

for now i would just comment out from line 268 to 308 of that file.

- g
guilliam (User)
Fresh Boarder
Posts: 18
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
Go to top