Example #1
0
 public function editCat($params)
 {
     $id = $params["id"];
     $name = htmlspecialchars($params["name"]);
     $template = new Model_Template();
     $template->editCat($id, $name);
 }