Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Should Fix #412
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Jan 12, 2014
1 parent c1eca03 commit 09efadc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/src/core/classes/class.UserSelection.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,10 @@ public function initFromArray($array)
//return ;
}
if (isSet($array["nodes"]) && is_array($array["nodes"])) {
$this->files = $array["nodes"];
$this->files = array();
foreach($array["nodes"] as $value){
$this->files[] = AJXP_Utils::decodeSecureMagic($value);
}
$this->isUnique = count($this->files) == 1;
}
if (isSet($array[$this->dirPrefix])) {
Expand Down

0 comments on commit 09efadc

Please sign in to comment.