Changed code style for better diffs
| | |
| | | */ |
| | | function _convert_pre(&$text) |
| | | { |
| | | while(preg_match('/<pre[^>]*>(.*)<\/pre>/ismU', $text, $matches)) |
| | | { |
| | | while(preg_match('/<pre[^>]*>(.*)<\/pre>/ismU', $text, $matches)) { |
| | | $result = preg_replace($this->pre_search, $this->pre_replace, $matches[1]); |
| | | $text = preg_replace('/<pre[^>]*>.*<\/pre>/ismU', '<div><br>' . $result . '<br></div>', $text, 1); |
| | | } |
| | |
| | | */ |
| | | function _preg_callback($matches) |
| | | { |
| | | switch($matches[1]) |
| | | { |
| | | switch($matches[1]) { |
| | | case 'b': |
| | | case 'strong': |
| | | return $this->_strtoupper($matches[2]); |