Posted by pabluski on Aug 07, 2002 – 04:37 AM
at http://www.postnuke.com/modules.php?op=modload&name=News&file=article&sid=2104
I have noticed that when a member list is displayed and none of said members have a “url” entry, the list is not formatted properly. To remedy this I have the following one-byte patch:
in line 267 of html/modules/Member_List/index.php
change from (note the space in the single-quotes):
$user[‘url’] = ”;
to:
$user[‘url’] = ‘ ‘;
That’s it! Easy, no?