Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
46 | protected function _hashInternalEntryLinks($string) |
||
47 | { |
||
48 | $string = preg_replace( |
||
49 | "% |
||
50 | (?<!=) # don't hash if part of [url=… |
||
51 | {$this->_settings->get('server')}{$this->_settings->get('webroot')}{$this->_settings->get('hashBaseUrl')} |
||
52 | (\d+) # the id |
||
53 | %imx", |
||
54 | "#\\1", |
||
55 | $string |
||
56 | ); |
||
57 | |||
58 | return $string; |
||
59 | } |
||
61 |