Conditions | 5 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | protected function parseSearch() |
||
30 | { |
||
31 | if (stripos($this->search, ';') || stripos($this->search, ':')) { |
||
32 | $values = explode(';', $this->search); |
||
33 | foreach ($values as $value) { |
||
34 | $s = explode(':', $value); |
||
35 | if (count($s) == 1) { |
||
36 | $this->search = $s[0]; |
||
37 | } |
||
38 | } |
||
39 | |||
40 | $this->search = null; |
||
41 | } |
||
44 |