예제 #1
0
 /**
  * Block hooks
  */
 protected function before_parsing()
 {
     $this->string = htmlspecialchars($this->string);
     parent::before_parsing();
 }
예제 #2
0
파일: nwiki.php 프로젝트: vuchannguyen/web
 protected function after_parsing()
 {
     parent::after_parsing();
 }
예제 #3
0
파일: creole.php 프로젝트: evltuma/moodle
 public function get_section($header, $text, $clean = false)
 {
     // The requested header is likely to have been passed to htmlspecialchars in
     // self::before_parsing(), therefore we should decode it when looking for it.
     return parent::get_section(htmlspecialchars_decode($header), $text, $clean);
 }