Author: Derick Rethans (derickr)
Date: 2025-07-21T16:19:33+01:00
Commit: Disable source installation in the logic for now · php/web-php@9bc4e72 · GitHub
Raw diff: https://github.com/php/web-php/commit/9bc4e722d1ebf7e1cbda2b6a72cec15e73392d4b.diff
Disable source installation in the logic for now
Changed paths:
M downloads.php
Diff:
diff --git a/downloads.php b/downloads.php
index d6b13e2147..64f6d08e0d 100644
--- a/downloads.php
+++ b/downloads.php
@@ -149,13 +149,13 @@ function option(string $value, string $desc, $attributes = ): string
<input type="checkbox" id="multiversion" name="multiversion" value="Y"
<?= array_key_exists('multiversion', $options) && $options['multiversion'] === 'Y' ? 'checked' : '' ?>/>
</label>
-
+<!--
<label for="source" class="instructions-label">
I want to compile everything from source:
<input type="checkbox" id="source" name="source" value="Y"
<?= array_key_exists('source', $options) && $options['source'] === 'Y' ? 'checked' : '' ?>/>
</label>
-
+-->
<noscript>
<button type="submit" class="button">Update Instructions</button>
</noscript>