fixed inuse issue
This commit is contained in:
parent
95e81b5ba5
commit
82b01004a9
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ if ($cfg["use_pseudocron"] == true) {
|
|||
|
||||
/* Remove all own marks, only for frame 1 and 4 if $_REQUEST['appendparameters'] == 'filebrowser'
|
||||
filebrowser is used in tiny in this case also do not remove session marks */
|
||||
if (($frame == 1 || $frame == 4) && isset($_REQUEST['appendparameters']) && $_REQUEST['appendparameters'] != 'filebrowser') {
|
||||
if (($frame == 1 || $frame == 4) && (empty($_REQUEST['appendparameters']) || $_REQUEST['appendparameters'] != 'filebrowser')) {
|
||||
$col = new InUseCollection;
|
||||
$col->removeSessionMarks($sess->id);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue