diff --git a/code/CommentAdmin.php b/code/CommentAdmin.php index 97c95767..8e49430f 100644 --- a/code/CommentAdmin.php +++ b/code/CommentAdmin.php @@ -24,8 +24,7 @@ class CommentAdmin extends LeftAndMain { ); /** - * the number of comments per page for the {@see CommentTable} in this admin - * defaulted 20. + * @var int The number of comments per page for the {@link CommentTable} in this admin. */ static $comments_per_page = '20'; @@ -33,7 +32,7 @@ class CommentAdmin extends LeftAndMain { parent::init(); Requirements::javascript(CMS_DIR . '/javascript/CommentAdmin_right.js'); - Requirements::css(CMS_DIR . 'css/CommentAdmin.css'); + Requirements::css(CMS_DIR . '/css/CommentAdmin.css'); } public function showtable($params) { @@ -301,19 +300,15 @@ JS; } /** - * Set CommentAdmin::comments_per_page * @param $num int - */ - + */ function set_comments_per_page($num){ self::$comments_per_page = $num; } /** - * Get CommentAdmin::comments_per_page * @return int */ - function get_comments_per_page(){ return self::$comments_per_page; }