|
From: Jon O. <jon...@us...> - 2006-06-29 22:53:09
|
Update of /cvsroot/mxbb/mx_quotations In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv14862/modules/mx_quotations Modified Files: mx_quotations.php Log Message: fix for lettering Index: mx_quotations.php =================================================================== RCS file: /cvsroot/mxbb/mx_quotations/mx_quotations.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** mx_quotations.php 29 Jun 2006 22:45:05 -0000 1.15 --- mx_quotations.php 29 Jun 2006 22:53:05 -0000 1.16 *************** *** 177,180 **** --- 177,181 ---- mx_message_die( GENERAL_ERROR, 'Could not query quotations information', '', __LINE__, __FILE__, $sql3 ); } + while ( $row3 = $db->sql_fetchrow( $result2 ) ) { *************** *** 305,309 **** foreach ( $letters as $letter ) { ! if ( ( $initial_letter == $letter ) && ( $other == 0 ) && ( $all == 0 ) ) { $initial_links .= '<b>' . $letter . '</b> '; --- 306,310 ---- foreach ( $letters as $letter ) { ! if ( ( $HTTP_GET_VARS['initial'] == $letter ) && ( $other == 0 ) && ( $all == 0 ) ) { $initial_links .= '<b>' . $letter . '</b> '; |