Keep getting following msg:
[2006-04-10 11:52:55] [BUDDY] [LOG] Enforcon logged [on]
Fatal error: Cannot use string offset as an array in C:\BeBot_v0.2.3\modules\Log
on_GUILD.php on line 113
C:\BeBot_v0.2.3>pause
Press any key to continue . . .
only thing i have changed is: bot.php
/*
Check if person is a member of the bot
function is_member($uname)
{
$result = $this -> db -> select("SELECT nickname FROM members WHERE id = " . $this -> aoc -> get_uid($uname));
if (!empty($result))
return 1;
$result = $this -> db -> select("SELECT id FROM guests WHERE id = " . $this -> aoc -> get_uid($uname));
if (!empty($result))
return 2;
return false;
}*/
function is_member($uname)
{
return 1;
}
to remove is member