
Fatih Ibrahimi - 2010-01-09 23:27:01 -
In reply to message 1 from moshe
if(count($PositionS) > 0) {
$parentPosition = implode(">", $PositionS).">";
}
Root nodes are not > 0, so the $parentPosition is not defined!
I don't know if it's solved, but i added this:
else {
$parentPosition = "";
}
At least the error is gone...