PHP-Nuke Nederland: Forums
PHP-Nuke Nederland :: View topic - Avatars geven een rood kruis
Author
Message
BlueLion
Administrator
Joined: Aug 21, 2004
Posts: 2831
Posted:
Sat 18 Sep 2004 21:41
De avatars van gebruikers geven een rood kruis. Dit kan je als volgt oplossen:
Open viewtopic.php in root/modules/Forums, en vindt het volgende:
Code:
//
// Start initial var setup
//
En voeg hiervóór aan toe:
Code:
if (!isset($images['default_avatar']) || $images['default_avatar'] == "")
{
$images['default_avatar'] = "modules/Forums/images/avatars/blank.gif";
}
if (!isset($images['guest_avatar']) || $images['guest_avatar'] == "")
{
$images['guest_avatar'] = "modules/Forums/images/avatars/blank.gif";
}
Zodat het er zo uit ziet:
Code:
if (!isset($images['default_avatar']) || $images['default_avatar'] == "")
{
$images['default_avatar'] = "modules/Forums/images/avatars/blank.gif";
}
if (!isset($images['guest_avatar']) || $images['guest_avatar'] == "")
{
$images['guest_avatar'] = "modules/Forums/images/avatars/blank.gif";
}
//
// Start initial var setup
//
BL
BlueLion
Administrator
Joined: Aug 21, 2004
Posts: 2831
Posted:
Tue 14 Dec 2004 8:50
Donaties
Adverteren
Wilt u het forum steunen, dan kunt u nu eenvoudig doneren met PayPal.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
Powered by phpBB © 2001, 2005 phpBB Group