my experience with later versions of php7 require the casting back to a string.
Code:
function buildBranch($parent_id, $level = 0, $submenu=true, $parent_link='')
{
$level = (int)$level;
$result = sprintf($this->parent_group_start_string, ($submenu==true) ? ' class="level'. (string)($level+1) . '"' : '' );
if (($this->data[$parent_id])) {
Bookmarks