From 17e6e108acb93a66dc964496ec0b016f778cff57 Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Mon, 27 May 2002 00:20:03 +0000 Subject: [PATCH] * drop "any" as a valid preferred_state --- pear/PEAR/Config.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pear/PEAR/Config.php b/pear/PEAR/Config.php index 860dcb3b0b..f0392ac6dc 100644 --- a/pear/PEAR/Config.php +++ b/pear/PEAR/Config.php @@ -131,10 +131,9 @@ class PEAR_Config extends PEAR 'preferred_state' => array( 'type' => 'set', 'default' => 'stable', - 'doc' => 'the installer will prefer releases with this state -when installing packages without a version or state specified', + 'doc' => 'the installer will prefer releases with this state when installing packages without a version or state specified', 'valid_set' => array( - 'stable', 'beta', 'alpha', 'devel', 'snapshot', 'any'), + 'stable', 'beta', 'alpha', 'devel', 'snapshot'), ), 'http_proxy' => array( 'type' => 'string', -- 2.40.0