Skip to content
Snippets Groups Projects
Commit 091d6987 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: php error

parent effa56d5
No related branches found
No related tags found
No related merge requests found
...@@ -428,7 +428,9 @@ if (empty($action) || $action == 'file_manager' || eregi('refresh',$action) || $ ...@@ -428,7 +428,9 @@ if (empty($action) || $action == 'file_manager' || eregi('refresh',$action) || $
//print "fullpathselected=".$fullpathselected."<br>"; //print "fullpathselected=".$fullpathselected."<br>";
// Update expandedsectionarray in session // Update expandedsectionarray in session
$expandedsectionarray=split(',',$_SESSION['expandedsectionarray']); $expandedsectionarray=array();
if (isset($_SESSION['expandedsectionarray'])) $expandedsectionarray=split(',',$_SESSION['expandedsectionarray']);
if ($section && $_GET['sectionexpand'] == 'true') if ($section && $_GET['sectionexpand'] == 'true')
{ {
// We add all sections that are parent of opened section // We add all sections that are parent of opened section
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment