Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
$text = '<div class="tree">';
foreach ($this->data as &$line) {
$text .= '<div style="height: 18px">';
+ unset($head);
foreach ($line as &$item) {
if ($item == ' ') {
$text .= $t_e;
if (Banana::$artid == $item) {
$text .= ' checked="checked"';
}
+ $last_title = $head->subject;
$text .= '/></span>';
}
}
+ if (function_exists('hook_spoolTagBranch') && isset($head)) {
+ $text .= hook_spoolTagBranch($head);
+ }
$text .= "</div>\n";
}
$text .= '</div>';