Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
47 | public function getFrontPageHtml() { |
||
48 | $pos_start = strpos($this->text, '[frontpage]'); |
||
49 | $pos_end = strpos($this->text, '[/frontpage]'); |
||
50 | $nr_char = $pos_end - $pos_start; |
||
51 | $frontpage = substr($this->text, $pos_start, $nr_char); |
||
52 | return InsertALCode(RemoveSmillies($frontpage)); |
||
53 | } |
||
55 |