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; $nofollow = false;
} }
if ($stack->isEmpty()) { if ($stack->isEmpty()) {
$chapterName = $header; $chapterTitle = $header;
$section = new Section($id, $header, $level, $nofollow, $chapterName); $section = new Section($id, $header, $level, $nofollow, $chapterTitle);
$tree->addRoot($section); $tree->addRoot($section);
} else { } else {
$chapterName = $stack->bottom()->getTitle(); $chapterTitle = $stack->bottom()->getTitle();
$section = new Section($id, $header, $level, $nofollow, $chapterName); $section = new Section($id, $header, $level, $nofollow, $chapterTitle);
$tree->addChild($section, $stack->top()); $tree->addChild($section, $stack->top());
} }
$stack->push($section); $stack->push($section);