View Single Post
PandaHero
Junior Member
Join Date: Feb 2013
Old 05-11-2014 , 16:21   Re: Beta Webpanel 1.2.5 (improved loading times)
Reply With Quote #14

There's a problem with 1.2.5, not sure if it is only just me.

When click on the ID of a player, the link is wrong.

It currently directs to index.php/users/edit730
instead of the correct version index.php/users/edit/730

So basically it is missing a slash.

Plus dashboard is taking very long to load, while loading issues in users and items are basically non-existent.

Edit:
I don't know why it was not working, in users.php, line 193, it was not adding the slash properly
Original code: $row[] = "<a href=\"".base_url("/index.php/users/edit/").$aRow[$aColumns[$i]]."\">".$aRow[$aColumns[$i]]."</a>";
My workaround: $row[] = "<a href=\"".base_url("/index.php/users/edit/")."/".$aRow[$aColumns[$i]]."\">".$aRow[$aColumns[$i]]."</a>";

Last edited by PandaHero; 05-11-2014 at 16:35.
PandaHero is offline