X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2Fmwdocgen.php;h=ee0ff0176655f9a439be80009262f196ecfccc84;hb=8c34c8ed5e3f581b0d507aa7a4a90ac776aa9a87;hp=9fb1314228ec5593ede3b82ec7a89702ba856961;hpb=4abdb946e3aff871921c1565cd252ced05782c8f;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/mwdocgen.php b/maintenance/mwdocgen.php index 9fb1314228..ee0ff01766 100644 --- a/maintenance/mwdocgen.php +++ b/maintenance/mwdocgen.php @@ -79,7 +79,7 @@ class MWDocGen extends Maintenance { $this->input = ''; $inputs = explode( ',', $this->getOption( 'file', '' ) ); - foreach( $inputs as $input ) { + foreach ( $inputs as $input ) { # Doxygen inputs are space separted and double quoted $this->input .= " \"$IP/$input\""; } @@ -152,15 +152,13 @@ You might want to delete the temporary file: --------------------------------------------------- TEXT - ); + ); if ( $exitcode !== 0 ) { $this->error( "Something went wrong (exit: $exitcode)\n", $exitcode ); } - } - } $maintClass = 'MWDocGen';