Beispiel #1
0
 function editComment()
 {
     $id = intval($_GET["commentID"]);
     system::setParam("page", "editComment");
     if (!empty($_POST)) {
         blog::updateComment($id);
     }
     blog::buildForm("comments", "AND `commentID`={$id}");
 }