Skip to content

Commit

Permalink
Fix CS from #1377
Browse files Browse the repository at this point in the history
  • Loading branch information
andrerom committed Jul 18, 2018
1 parent dee1c5c commit c17f617
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/ezsession/classes/ezsession.php
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,8 @@ static protected function registerFunctions( $sessionName = false, ezpSessionHan
$ini = eZINI::instance();
if ( $sessionName !== false )
{
if ( $sessionName !== session_name() ) {
if ( $sessionName !== session_name() )
{
session_name( $sessionName );
}
}
Expand Down

0 comments on commit c17f617

Please sign in to comment.