I would like to go back the matter what started the topic.
the two problems what i found.
Problem 1
Alexandre (43 posts) [Selected post] Aug 03, 2010; 11:09am error in Fudforum
when I create or modify an account, it was shown the following error:
[error] [client 127.0.0.1] PHP Catchable fatal error: Object of class accounts could not be converted to string in /usr/share/gw/fudforum/inc/class.ufud.inc.php on line 65, referer: http://localhost/gw/index.php?menuaction=admin.uiaccounts.edit_user&account_id=1011
the line 65 of file class.ufud.inc.php is:
$name = addslashes($$acc->data[‘firstname’] . ’ ’ . $acc->data[‘lastname’]);
I change for ;
$name = addslashes($acc->data[‘firstname’] . ’ ’ . $acc->data[‘lastname’]);
and worked fine.
Thanks.
Problem 2:
Alexandre (43 posts) [Selected post] Aug 03, 2010; 11:26am Re: error in Fudforum
Hi. I found another problem.
In Page of administrator the link ‘Site configuration’ of fudforum is broken.
the link is pointing for [url]/fudforum/0/adm/admglobal.php
I believe what this problem is in line 16 of file hook_preferences.inc.php,
am I right?
Thanks.