diff options
Diffstat (limited to 'rpm.php')
-rw-r--r-- | rpm.php | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -38,7 +38,9 @@ require 'include/main.php'; $what=(isset($_GET["what"]) ? $_GET["what"] : "%fedora"); $type=(isset($_GET["type"]) ? $_GET["type"] : "pecl"); - +if (!in_array($type, array('composer', 'pecl', 'pear', 'R'))) { + $type = 'pecl'; +} $ariane[] = array( 'url' => '#', 'text' => strtoupper($type). ' extensions in Fedora' @@ -246,6 +248,7 @@ try { case "pecl": $filter = 'php-pecl-%'; break; + case "composer": case "pear": $filter = 'php-%'; break; |