|
From: OryNider <ory...@us...> - 2007-06-19 21:01:00
|
Update of /cvsroot/mxbb/mx_glance In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv29254 Modified Files: mx_glance.php Log Message: With this update and fix At a Glance is ready for release :D Index: mx_glance.php =================================================================== RCS file: /cvsroot/mxbb/mx_glance/mx_glance.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mx_glance.php 12 Jun 2007 11:19:14 -0000 1.2 --- mx_glance.php 19 Jun 2007 21:00:57 -0000 1.3 *************** *** 141,148 **** // // GET THE LATEST NEWS TOPIC ! // if ( $glance_num_news ) { - $news_data = $db->sql_fetchrow($result); - /* if ( 1 ) --- 141,146 ---- // // GET THE LATEST NEWS TOPIC ! if ( $glance_num_news ) { /* if ( 1 ) *************** *** 182,186 **** --- 180,188 ---- mx_message_die(GENERAL_ERROR, "Could not query new news information", "", __LINE__, __FILE__, $sql); } + $latest_news = array(); + + //$news_data = $db->sql_fetchrow($result); + while ( $topic_row = $db->sql_fetchrow($result) ) { |