Error in the admin area.
After I installed the mod and activated it in the admin area I select settings and this is the error I received.
[code="html4strict"]
Fatal error: Call to undefined function phorum_user_get_list() in
/phorum/mods/userrank/settings.php on line 80[/code]
This is from my settings.php in ranks
[code="php"]
$frm->addbreak();
$frm->addmessage("Below you can set a custom ranks for individual users.");
// build a list of users for the dropdown
$temp = phorum_user_get_list();
$userlist = array();
$userlist[-1] = "< Nobody >";
foreach ($temp as $userid => $user) {
$userlist[$userid] = $user["displayname"];
[/code]
Edited 1 time(s). Last edit at 10/21/2009 06:34AM by djdubuque.