rhymix/modules/board/board.mobile.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);
}
}