|
From: OryNider <ory...@us...> - 2007-06-06 21:47:48
|
Update of /cvsroot/mxbb/mx_glance/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6660/admin Added Files: admin_mx_glance.php index.htm Log Message: --- NEW FILE: admin_mx_glance.php --- <?php define('IN_PORTAL', 1); $mx_root_path = '../' ; global $db; if ( empty( $block_id ) ) { $sql = "SELECT * FROM " . BLOCK_TABLE . " WHERE block_title = 'Last News and Topics' LIMIT 1"; if(!$result = $db->sql_query($sql)) { message_die(GENERAL_ERROR, "Could not query Last News and Topics module information", "", __LINE__, __FILE__, $sql); } $row = $db->sql_fetchrow($result); $block_id = $row[block_id]; } if( !empty($setmodules) ) { $module['Last_News_and_Topics']['General_Module_Settings'] = "admin/admin_mx_block_cp.php?mode=setting&block_id=$block_id"; return; } ?> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |