|
From: Jon O. <jon...@us...> - 2005-10-24 20:16:08
|
Update of /cvsroot/mxbb/mx_linkdb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1103/modules/mx_linkdb Modified Files: db_upgrade.php linkdb.php Log Message: replaced all message_die with mx_message_die Index: linkdb.php =================================================================== RCS file: /cvsroot/mxbb/mx_linkdb/linkdb.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** linkdb.php 23 Oct 2005 18:50:40 -0000 1.3 --- linkdb.php 24 Oct 2005 20:16:01 -0000 1.4 *************** *** 39,43 **** if ( !$result = $db->sql_query( $sql ) ) { ! message_die( GENERAL_ERROR, "Could not query Smartor_Album module information", "", __LINE__, __FILE__, $sql ); } $row = $db->sql_fetchrow( $result ); --- 39,43 ---- if ( !$result = $db->sql_query( $sql ) ) { ! mx_message_die( GENERAL_ERROR, "Could not query Smartor_Album module information", "", __LINE__, __FILE__, $sql ); } $row = $db->sql_fetchrow( $result ); Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_linkdb/db_upgrade.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** db_upgrade.php 1 Oct 2005 14:14:17 -0000 1.6 --- db_upgrade.php 24 Oct 2005 20:16:01 -0000 1.7 *************** *** 136,140 **** if ( !( $result = $db->sql_query( $sqltmp ) ) ) { ! message_die( CRITICAL_ERROR, "Could not query portal version", "", __LINE__, __FILE__, $sql ); } --- 136,140 ---- if ( !( $result = $db->sql_query( $sqltmp ) ) ) { ! mx_message_die( CRITICAL_ERROR, "Could not query portal version", "", __LINE__, __FILE__, $sql ); } *************** *** 148,152 **** if ( !( $result = $db->sql_query( $sqltmp2 ) ) ) { ! message_die( CRITICAL_ERROR, "Could not query portal version", "", __LINE__, __FILE__, $sql ); } --- 148,152 ---- if ( !( $result = $db->sql_query( $sqltmp2 ) ) ) { ! mx_message_die( CRITICAL_ERROR, "Could not query portal version", "", __LINE__, __FILE__, $sql ); } |