|
From: OryNider <ory...@us...> - 2008-03-25 05:10:41
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv25921 Modified Files: mx_functions_phpbb.php Log Message: ups typo Index: mx_functions_phpbb.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_phpbb.php,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -d -r1.57 -r1.58 *** mx_functions_phpbb.php 25 Mar 2008 04:46:47 -0000 1.57 --- mx_functions_phpbb.php 25 Mar 2008 05:10:32 -0000 1.58 *************** *** 1188,1197 **** if ( !empty($_SID) && !preg_match('#sid=#', $url) ) { ! $url .= ((strpos($url, '?') === false) ? '?' . $_SID : (( $non_html_amp ) ? '&' : '&' )) . $_SID; } if ( !empty($SID) && !preg_match('#sid=#', $url) ) { ! $url .= ((strpos($url, '?') === false) ? '?' . $SID : (( $non_html_amp ) ? '&' : '&' )) . $SID; } --- 1188,1197 ---- if ( !empty($_SID) && !preg_match('#sid=#', $url) ) { ! $url .= ( (strpos($url, '?') === false) ? '?' : (( $non_html_amp ) ? '&' : '&' ) ) . $_SID; } if ( !empty($SID) && !preg_match('#sid=#', $url) ) { ! $url .= ( (strpos($url, '?') === false) ? '?' : (( $non_html_amp ) ? '&' : '&' ) ) . $SID; } |