I wanted to know ifyou could help me figure what is wrong here.
I am using phpbb2 + version (
www.phpbb2.de ) for an association i help out with here in finland. I am using your bot mod as it kicks butt for sure and helps in figuring out who is online (and how many times as well).
but as of v 2.0.18, there is a bug (and perhaps a bug that has been going on since I started using this mod back in 2.0.14 in that in the section in the functions.php file...
Code: Select all
includes/functions.php
#-----[ FIND ]------------------------------------------------------
$theme = setup_style($board_config['default_style']);
#-----[ REPLACE WITH ]----------------------------------------------
if (IS_ROBOT)
{
$sql = "SELECT bot_style FROM " . $table_prefix . "bots WHERE bot_name='" . IS_ROBOT . "'";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$theme = setup_style($row['bot_style']);
} else {
$theme = setup_style($board_config['default_style']);
}
after i replace this part of the code, then i disable the board, then i get the error message
message_die() was called multiple times. This isn't supposed to happen. Was message_die() used in page_tail.php?
now as soon i remove that new code and put back the original code, then the disable board feature works as normal. all the rest of the code changes that are required for this mod are working as normal and I have triple checked my lines to make sure nothing is left out (copy / pasted)
Can you or then anyone help me out?
I know i am sur i will get the standard (this is a modded version of phpbb and will not support it, but however, ifyou read the info on the file code i attached, its phpbb code and nothing that I can find that phpbb2 has added to this code.. so I would like to have someone help me out here please..

I dont have a lot of money, but can donate something to someone if they can get this mod updated to work with phpbb2 plus version..
below is the functions.php file from phpbb2 + 1.52 version (found at
www.phpbb2.de) using phpbb2 plus 1.52
see the functions.php code for further info.
-- edited: sorry about posting the whole code there. my bad.. I have now removed it and reference the readers to look at the functions.php file in /INCLUDES/ folder