|
From: Jon O. <jon...@us...> - 2005-10-24 20:14:41
|
Update of /cvsroot/mxbb/mx_errordocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv645/modules/mx_errordocs Modified Files: db_install.php db_uninstall.php errordocs.php Log Message: replaced all message_die with mx_message_die Index: errordocs.php =================================================================== RCS file: /cvsroot/mxbb/mx_errordocs/errordocs.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** errordocs.php 23 Oct 2005 18:49:39 -0000 1.2 --- errordocs.php 24 Oct 2005 20:14:32 -0000 1.3 *************** *** 52,56 **** if( !$result = $db->sql_query($sql) ) { ! message_die(GENERAL_ERROR, "Could not query ErrorDocs module information", "", __LINE__, __FILE__, $sql); } $row = $db->sql_fetchrow($result); --- 52,56 ---- if( !$result = $db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, "Could not query ErrorDocs module information", "", __LINE__, __FILE__, $sql); } $row = $db->sql_fetchrow($result); Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_errordocs/db_install.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** db_install.php 22 Oct 2005 12:40:53 -0000 1.1 --- db_install.php 24 Oct 2005 20:14:32 -0000 1.2 *************** *** 51,55 **** if( !defined('ERRORDOCS_LOG_TABLE') ) { ! message_die(GENERAL_ERROR, "Couldn't load file includes/common.$phpEx", "", __LINE__, __FILE__); } --- 51,55 ---- if( !defined('ERRORDOCS_LOG_TABLE') ) { ! mx_message_die(GENERAL_ERROR, "Couldn't load file includes/common.$phpEx", "", __LINE__, __FILE__); } Index: db_uninstall.php =================================================================== RCS file: /cvsroot/mxbb/mx_errordocs/db_uninstall.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** db_uninstall.php 22 Oct 2005 12:40:53 -0000 1.1 --- db_uninstall.php 24 Oct 2005 20:14:32 -0000 1.2 *************** *** 51,55 **** if( !defined('ERRORDOCS_LOG_TABLE') ) { ! message_die(GENERAL_ERROR, "Couldn't load file includes/common.$phpEx", "", __LINE__, __FILE__); } --- 51,55 ---- if( !defined('ERRORDOCS_LOG_TABLE') ) { ! mx_message_die(GENERAL_ERROR, "Couldn't load file includes/common.$phpEx", "", __LINE__, __FILE__); } |