Quote:
Originally Posted by guvner
Thanks Cloudrunner - the alphabetised listing is great!
The avatar URL is still a little off though, mine still has the red X because there's a / missing between the forum dir and image.php as follows:
Code:
http://www.mysite.com/forumimage.php?u=52&dateline=1108213260
I had a look at donation_admin.php but really couldn't figure our how to fix it 
|
Open donation_admin.php and look for the line that reads:
PHP Code:
$avatarurl = $vboptions['bburl']."image.php?".$session['sessionurl']."u=".$row['userid']."&dateline=".$user_row['avatardateline'];
change it to:
PHP Code:
$avatarurl = $vboptions['bburl']."/image.php?".$session['sessionurl']."u=".$row['userid']."&dateline=".$user_row['avatardateline'];
(Note the added '/')
Specific line for the edit is line 281
sorry bout that, it'll be in the next update.
Thanx fer keepin me on me toes folks!