Ejemplo n.º 1
0
 function show()
 {
     $thread = Threads::withSummary($this->article);
     if ($thread && $thread->root()) {
         $t = $thread->root()->getTitle();
         $link = Linker::link($t);
         $this->output->setSubtitle(wfMessage('lqt_summary_subtitle')->rawParams($link)->parse());
     }
     return true;
 }
 function show()
 {
     $thread = Threads::withSummary($this->article);
     if ($thread && $thread->root()) {
         $t = $thread->root()->getTitle();
         $linker = class_exists('DummyLinker') ? new DummyLinker() : new Linker();
         $link = $linker->link($t);
         $this->output->setSubtitle(wfMsgExt('lqt_summary_subtitle', array('parseinline', 'replaceafter'), $link));
     }
     return true;
 }