|
From: Jon O. <jon...@us...> - 2005-10-24 20:17:37
|
Update of /cvsroot/mxbb/mx_phpbb/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1639/modules/mx_phpbb/includes Modified Files: forum_hack.php Log Message: replaced all message_die with mx_message_die Index: forum_hack.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/includes/forum_hack.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** forum_hack.php 23 Oct 2005 18:51:38 -0000 1.6 --- forum_hack.php 24 Oct 2005 20:17:27 -0000 1.7 *************** *** 55,59 **** if ( !$result = $db->sql_query( $sql ) ) { ! message_die( CRITICAL_ERROR, "Could not query phpbb plugin configuration information", "", __LINE__, __FILE__, $sql ); } else --- 55,59 ---- if ( !$result = $db->sql_query( $sql ) ) { ! mx_message_die( CRITICAL_ERROR, "Could not query phpbb plugin configuration information", "", __LINE__, __FILE__, $sql ); } else *************** *** 1007,1011 **** if( !($result = $db->sql_query($sql)) ) { ! message_die(GENERAL_ERROR, 'Could not obtain user/online information', '', __LINE__, __FILE__, $sql); } --- 1007,1011 ---- if( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Could not obtain user/online information', '', __LINE__, __FILE__, $sql); } *************** *** 1086,1090 **** if ( !$db->sql_query($sql) ) { ! message_die(GENERAL_ERROR, 'Could not update online user record (nr of users)', '', __LINE__, __FILE__, $sql); } --- 1086,1090 ---- if ( !$db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not update online user record (nr of users)', '', __LINE__, __FILE__, $sql); } *************** *** 1094,1098 **** if ( !$db->sql_query($sql) ) { ! message_die(GENERAL_ERROR, 'Could not update online user record (date)', '', __LINE__, __FILE__, $sql); } } --- 1094,1098 ---- if ( !$db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not update online user record (date)', '', __LINE__, __FILE__, $sql); } } |