|
From: OryNider <ory...@us...> - 2008-03-25 04:47:39
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15047 Modified Files: mx_functions_phpbb.php Log Message: Index: mx_functions_phpbb.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_phpbb.php,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** mx_functions_phpbb.php 13 Mar 2008 07:19:59 -0000 1.56 --- mx_functions_phpbb.php 25 Mar 2008 04:46:47 -0000 1.57 *************** *** 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; } --- 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; } |