|
From: Jon O. <jon...@us...> - 2005-10-24 20:17:03
|
Update of /cvsroot/mxbb/mx_pafiledb/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1468/modules/mx_pafiledb/admin Modified Files: admin_pa_fchecker.php mx_module_defs.php Log Message: replaced all message_die with mx_message_die Index: admin_pa_fchecker.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/admin/admin_pa_fchecker.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** admin_pa_fchecker.php 1 Oct 2005 14:15:19 -0000 1.12 --- admin_pa_fchecker.php 24 Oct 2005 20:16:56 -0000 1.13 *************** *** 130,134 **** if ( !($db->sql_query($sql)) ) { ! message_die(GENERAL_ERROR, 'Couldnt Query info', '', __LINE__, __FILE__, $sql); }*/ $template->assign_block_vars( "check.check_step1", array( 'DEL_DURL' => $temp_dlurl ) --- 130,134 ---- if ( !($db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Couldnt Query info', '', __LINE__, __FILE__, $sql); }*/ $template->assign_block_vars( "check.check_step1", array( 'DEL_DURL' => $temp_dlurl ) *************** *** 160,164 **** if ( !($db->sql_query($sql)) ) { ! message_die(GENERAL_ERROR, 'Couldnt Query info', '', __LINE__, __FILE__, $sql); }*/ --- 160,164 ---- if ( !($db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Couldnt Query info', '', __LINE__, __FILE__, $sql); }*/ Index: mx_module_defs.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/admin/mx_module_defs.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mx_module_defs.php 22 Oct 2005 10:56:15 -0000 1.2 --- mx_module_defs.php 24 Oct 2005 20:16:56 -0000 1.3 *************** *** 365,369 **** if ( !( $result = $db->sql_query( $sql1 ) ) ) { ! message_die( GENERAL_ERROR, $lang['News_update_error'], "", __LINE__, __FILE__, $sql[$i] ); } --- 365,369 ---- if ( !( $result = $db->sql_query( $sql1 ) ) ) { ! mx_message_die( GENERAL_ERROR, $lang['News_update_error'], "", __LINE__, __FILE__, $sql[$i] ); } *************** *** 404,408 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! message_die( GENERAL_ERROR, $lang['News_update_error'], "", __LINE__, __FILE__, $sql[$i] ); } --- 404,408 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, $lang['News_update_error'], "", __LINE__, __FILE__, $sql[$i] ); } *************** *** 443,447 **** if ( !( $result = $db->sql_query( $sql1 ) ) ) { ! message_die( GENERAL_ERROR, $lang['News_update_error'], "", __LINE__, __FILE__, $sql[$i] ); } } --- 443,447 ---- if ( !( $result = $db->sql_query( $sql1 ) ) ) { ! mx_message_die( GENERAL_ERROR, $lang['News_update_error'], "", __LINE__, __FILE__, $sql[$i] ); } } *************** *** 472,476 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! message_die( GENERAL_ERROR, 'Couldnt Query categories info', '', __LINE__, __FILE__, $sql ); } $cat_rowset_temp = $db->sql_fetchrowset( $result ); --- 472,476 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Couldnt Query categories info', '', __LINE__, __FILE__, $sql ); } $cat_rowset_temp = $db->sql_fetchrowset( $result ); |