|
From: Jon O. <jon...@us...> - 2005-10-24 20:18:45
|
Update of /cvsroot/mxbb/mx_quotations In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2039/modules/mx_quotations Modified Files: mx_last_quotations.php mx_quotations.php mx_random_quotation.php Log Message: replaced all message_die with mx_message_die Index: mx_last_quotations.php =================================================================== RCS file: /cvsroot/mxbb/mx_quotations/mx_last_quotations.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** mx_last_quotations.php 23 Oct 2005 18:52:11 -0000 1.5 --- mx_last_quotations.php 24 Oct 2005 20:18:37 -0000 1.6 *************** *** 58,62 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! message_die( "Could not obtain Quotations Information:<br>$sql" ); } --- 58,62 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( "Could not obtain Quotations Information:<br>$sql" ); } Index: mx_random_quotation.php =================================================================== RCS file: /cvsroot/mxbb/mx_quotations/mx_random_quotation.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** mx_random_quotation.php 23 Oct 2005 18:52:11 -0000 1.4 --- mx_random_quotation.php 24 Oct 2005 20:18:37 -0000 1.5 *************** *** 53,57 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! message_die( "Could not obtain Quotations Information:<br>$sql" ); } --- 53,57 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( "Could not obtain Quotations Information:<br>$sql" ); } Index: mx_quotations.php =================================================================== RCS file: /cvsroot/mxbb/mx_quotations/mx_quotations.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** mx_quotations.php 23 Oct 2005 18:52:11 -0000 1.8 --- mx_quotations.php 24 Oct 2005 20:18:37 -0000 1.9 *************** *** 72,76 **** else { ! message_die( CRITICAL_MESSAGE, "Hacking attempt" ); } break; --- 72,76 ---- else { ! mx_message_die( CRITICAL_MESSAGE, "Hacking attempt" ); } break; *************** *** 83,87 **** else { ! message_die( CRITICAL_MESSAGE, "Hacking attempt" ); } break; --- 83,87 ---- else { ! mx_message_die( CRITICAL_MESSAGE, "Hacking attempt" ); } break; *************** *** 94,98 **** else { ! message_die( CRITICAL_MESSAGE, "Hacking attempt" ); } break; --- 94,98 ---- else { ! mx_message_die( CRITICAL_MESSAGE, "Hacking attempt" ); } break; *************** *** 203,207 **** if ( !( $result3 = $db->sql_query( $sql3 ) ) ) { ! message_die( GENERAL_ERROR, 'Could not query quotations information', '', __LINE__, __FILE__, $sql3 ); } while ( $row3 = $db->sql_fetchrow( $result2 ) ) --- 203,207 ---- if ( !( $result3 = $db->sql_query( $sql3 ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not query quotations information', '', __LINE__, __FILE__, $sql3 ); } while ( $row3 = $db->sql_fetchrow( $result2 ) ) *************** *** 255,259 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! message_die( "Could not obtain Quotations information:<br>$sql" ); } --- 255,259 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( "Could not obtain Quotations information:<br>$sql" ); } |