mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
13 lines
327 B
PHP
13 lines
327 B
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
|
|
class BoardMobile extends BoardView
|
|
{
|
|
public function getBoardCommentPage()
|
|
{
|
|
$this->dispBoardCommentPage();
|
|
$oTemplate = TemplateHandler::getInstance();
|
|
$html = $oTemplate->compile($this->getTemplatePath(), 'comment.html');
|
|
$this->add('html', $html);
|
|
}
|
|
}
|