MediaWiki REL1_32
RaggettInternalHHVM.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Tidy;
4
18 protected function cleanWrapped( $text, $stderr = false, &$retval = null ) {
19 if ( $stderr ) {
20 throw new \Exception( "\$stderr cannot be used with RaggettInternalHHVM" );
21 }
22 $cleansource = tidy_repair_string( $text, $this->config['tidyConfigFile'], 'utf8' );
23 if ( $cleansource === false ) {
24 $cleansource = null;
25 $retval = -1;
26 } else {
27 $retval = 0;
28 }
29
30 return $cleansource;
31 }
32}
cleanWrapped( $text, $stderr=false, &$retval=null)
Use the HTML tidy extension to use the tidy library in-process, saving the overhead of spawning a new...
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account incomplete not yet checked for validity & $retval
Definition hooks.txt:266