doc/DocParser: Rename 'chapterName' to 'chapterTitle'

refs #4820
This commit is contained in:
Eric Lippmann 2014-07-29 11:10:49 +02:00
parent 55d3818ebb
commit 38a6df91b9
1 changed files with 4 additions and 4 deletions

View File

@ -150,12 +150,12 @@ class DocParser
$nofollow = false;
}
if ($stack->isEmpty()) {
$chapterName = $header;
$section = new Section($id, $header, $level, $nofollow, $chapterName);
$chapterTitle = $header;
$section = new Section($id, $header, $level, $nofollow, $chapterTitle);
$tree->addRoot($section);
} else {
$chapterName = $stack->bottom()->getTitle();
$section = new Section($id, $header, $level, $nofollow, $chapterName);
$chapterTitle = $stack->bottom()->getTitle();
$section = new Section($id, $header, $level, $nofollow, $chapterTitle);
$tree->addChild($section, $stack->top());
}
$stack->push($section);