| Conditions | 6 |
| Paths | 5 |
| Total Lines | 33 |
| Code Lines | 21 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | protected function cleanWrapped( $text, $stderr = false, &$retval = null ) { |
||
| 16 | if ( !class_exists( 'tidy' ) ) { |
||
| 17 | wfWarn( "Unable to load internal tidy class." ); |
||
| 18 | $retval = -1; |
||
| 19 | |||
| 20 | return null; |
||
| 21 | } |
||
| 22 | |||
| 23 | $tidy = new \tidy; |
||
| 24 | $tidy->parseString( $text, $this->config['tidyConfigFile'], 'utf8' ); |
||
| 25 | |||
| 26 | if ( $stderr ) { |
||
| 27 | $retval = $tidy->getStatus(); |
||
| 28 | return $tidy->errorBuffer; |
||
|
|
|||
| 29 | } |
||
| 30 | |||
| 31 | $tidy->cleanRepair(); |
||
| 32 | $retval = $tidy->getStatus(); |
||
| 33 | if ( $retval == 2 ) { |
||
| 34 | // 2 is magic number for fatal error |
||
| 35 | // https://secure.php.net/manual/en/tidy.getstatus.php |
||
| 36 | $cleansource = null; |
||
| 37 | } else { |
||
| 38 | $cleansource = tidy_get_output( $tidy ); |
||
| 39 | if ( !empty( $this->config['debugComment'] ) && $retval > 0 ) { |
||
| 40 | $cleansource .= "<!--\nTidy reports:\n" . |
||
| 41 | str_replace( '-->', '-->', $tidy->errorBuffer ) . |
||
| 42 | "\n-->"; |
||
| 43 | } |
||
| 44 | } |
||
| 45 | |||
| 46 | return $cleansource; |
||
| 47 | } |
||
| 48 | |||
| 53 |
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.