예제 #1
0
파일: blog.php 프로젝트: ygres/sblog
 function editComment()
 {
     $id = intval($_GET["commentID"]);
     system::setParam("page", "editComment");
     if (!empty($_POST)) {
         blog::updateComment($id);
     }
     blog::buildForm("comments", "AND `commentID`={$id}");
 }