MediaWiki REL1_31
RaggettInternalHHVM.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Tidy;
4
15 protected function cleanWrapped( $text, $stderr = false, &$retval = null ) {
16 if ( $stderr ) {
17 throw new \Exception( "\$stderr cannot be used with RaggettInternalHHVM" );
18 }
19 $cleansource = tidy_repair_string( $text, $this->config['tidyConfigFile'], 'utf8' );
20 if ( $cleansource === false ) {
21 $cleansource = null;
22 $retval = -1;
23 } else {
24 $retval = 0;
25 }
26
27 return $cleansource;
28 }
29}
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