Index: trunk/phase3/includes/installer/Installer.php |
— | — | @@ -581,7 +581,9 @@ |
582 | 582 | return $command; |
583 | 583 | |
584 | 584 | $file = str_replace( '$1', $command, $versionInfo[0] ); |
585 | | - if ( strstr( wfShellExec( $file ), $versionInfo[1]) !== false ) |
| 585 | + # Should maybe be wfShellExec( $file), but runs into a ulimit, see |
| 586 | + # http://www.mediawiki.org/w/index.php?title=New-installer_issues&diff=prev&oldid=335456 |
| 587 | + if ( strstr( `$file`, $versionInfo[1]) !== false ) |
586 | 588 | return $command; |
587 | 589 | } |
588 | 590 | } |