예제 #1
0
파일: Wiki.php 프로젝트: Barthak/voodoo
 /**
  * Inserts a new revision
  * @param string $content
  */
 function update($content)
 {
     $wpr = new WikiRevision($this->db);
     $wpr->wiki =& $this;
     $wpr->content = $content;
     $wpr->insert();
 }