Skip to content

Commit

Permalink
description && check update
Browse files Browse the repository at this point in the history
  • Loading branch information
zero-24 committed Nov 19, 2014
1 parent 46efe2b commit e42a61a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions libraries/joomla/session/storage/none.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ class JSessionStorageNone extends JSessionStorage
*/
public function register()
{
// Set session.handler to files only if nothing else is set
if (empty(ini_get('session.save_handler')))
$handler = ini_get('session.save_handler');

// Set session.save_handler to files only if nothing else is set
if ($handler = '')
{
ini_set('session.save_handler', 'files');
}
Expand Down

0 comments on commit e42a61a

Please sign in to comment.