bug 913 fixed: ability to connect with an IPv6 address was added.

git-svn-id: http://piwigo.org/svn/branches/2.0@3165 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2009-02-26 20:09:26 +00:00
parent eb85efa77d
commit a1993b66d1
+10 -2
View File
@@ -93,7 +93,15 @@ function pwg_session_close()
function get_remote_addr_session_hash()
{
return vsprintf( "%02X%02X", explode('.',$_SERVER['REMOTE_ADDR']) );
$separator = (FALSE === strpos($_SERVER['REMOTE_ADDR'],'.'))
? ':'
: '.'
;
return vsprintf(
"%02X%02X",
explode($separator,$_SERVER['REMOTE_ADDR'])
);
}
/**
@@ -217,4 +225,4 @@ function pwg_unset_session_var($var)
return true;
}
?>
?>