|
From: Florin C B. <ory...@us...> - 2014-07-07 22:06:53
|
Update of /cvsroot/mxbb/core/includes/sessions/phpbb3 In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv2516 Modified Files: session.php Log Message: Some fixes for phpbb3 Backend Index: session.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/phpbb3/session.php,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** session.php 7 Jul 2014 21:31:17 -0000 1.62 --- session.php 7 Jul 2014 22:06:50 -0000 1.63 *************** *** 309,313 **** { // check IPv4 first, the IPv6 is hopefully only going to be used very seldomly ! if (!empty($ip) && !preg_match(phpBB3::get_preg_expression('ipv4'), $ip) && !preg_match(phpBB3::get_preg_expression('ipv6'), $ip)) { // Just break --- 309,313 ---- { // check IPv4 first, the IPv6 is hopefully only going to be used very seldomly ! if (!empty($ip) && !preg_match(phpBB3::get_preg_expression('ipv4'), $ip) && !@preg_match(phpBB3::get_preg_expression('ipv6'), $ip)) { // Just break |