|
From: Jon O. <jon...@us...> - 2005-10-24 20:17:17
|
Update of /cvsroot/mxbb/mx_pafiledb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1468/modules/mx_pafiledb Modified Files: dload.php dload_lists.php dload_quickdl.php Log Message: replaced all message_die with mx_message_die Index: dload_lists.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/dload_lists.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** dload_lists.php 23 Oct 2005 18:51:18 -0000 1.12 --- dload_lists.php 24 Oct 2005 20:16:56 -0000 1.13 *************** *** 73,77 **** if ( !$result = $db->sql_query( $sql ) ) { ! message_die( GENERAL_ERROR, "Could not query PafileDB_toplist module information", "", __LINE__, __FILE__, $sql ); } $row = $db->sql_fetchrow( $result ); --- 73,77 ---- if ( !$result = $db->sql_query( $sql ) ) { ! mx_message_die( GENERAL_ERROR, "Could not query PafileDB_toplist module information", "", __LINE__, __FILE__, $sql ); } $row = $db->sql_fetchrow( $result ); Index: dload.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/dload.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** dload.php 23 Oct 2005 18:51:18 -0000 1.14 --- dload.php 24 Oct 2005 20:16:56 -0000 1.15 *************** *** 73,77 **** if ( !$result = $db->sql_query( $sql ) ) { ! message_die( GENERAL_ERROR, "Could not query PafileDB module information", "", __LINE__, __FILE__, $sql ); } $row = $db->sql_fetchrow( $result ); --- 73,77 ---- if ( !$result = $db->sql_query( $sql ) ) { ! mx_message_die( GENERAL_ERROR, "Could not query PafileDB module information", "", __LINE__, __FILE__, $sql ); } $row = $db->sql_fetchrow( $result ); *************** *** 115,119 **** if ( intval( $pafiledb_config['settings_disable'] ) ) { ! message_die( GENERAL_MESSAGE, $lang['pafiledb_disable'] ); } // =================================================== --- 115,119 ---- if ( intval( $pafiledb_config['settings_disable'] ) ) { ! mx_message_die( GENERAL_MESSAGE, $lang['pafiledb_disable'] ); } // =================================================== Index: dload_quickdl.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/dload_quickdl.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** dload_quickdl.php 23 Oct 2005 18:51:18 -0000 1.4 --- dload_quickdl.php 24 Oct 2005 20:16:56 -0000 1.5 *************** *** 39,43 **** if ( !$result = $db->sql_query( $sql ) ) { ! message_die( GENERAL_ERROR, "Could not query PafileDB 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 PafileDB module information", "", __LINE__, __FILE__, $sql ); } $row = $db->sql_fetchrow( $result ); *************** *** 87,91 **** if ( intval( $pafiledb_config['settings_disable'] ) ) { ! message_die( GENERAL_MESSAGE, $lang['pafiledb_disable'] ); } // =================================================== --- 87,91 ---- if ( intval( $pafiledb_config['settings_disable'] ) ) { ! mx_message_die( GENERAL_MESSAGE, $lang['pafiledb_disable'] ); } // =================================================== |