cellog Tue Apr 17 23:12:26 2007 UTC
Modified files: (Branch: PEAR_1_5)
/pear-core/PEAR/Command Install.php
Log:
if channel:// is passed in, we get a notice
http://cvs.php.net/viewvc.cgi/pear-core/PEAR/Command/Install.php?r1=1.123.2.2&r2=1.123.2.3&diff_format=u
Index: pear-core/PEAR/Command/Install.php
diff -u pear-core/PEAR/Command/Install.php:1.123.2.2
pear-core/PEAR/Command/Install.php:1.123.2.3
--- pear-core/PEAR/Command/Install.php:1.123.2.2 Tue Apr 10 04:02:22 2007
+++ pear-core/PEAR/Command/Install.php Tue Apr 17 23:12:26 2007
@@ -16,7 +16,7 @@
* @author Greg Beaver <cellog@xxxxxxx>
* @copyright 1997-2006 The PHP Group
* @license http://www.php.net/license/3_0.txt PHP License 3.0
- * @version CVS: $Id: Install.php,v 1.123.2.2 2007/04/10 04:02:22 cellog
Exp $
+ * @version CVS: $Id: Install.php,v 1.123.2.3 2007/04/17 23:12:26 cellog
Exp $
* @link http://pear.php.net/package/PEAR
* @since File available since Release 0.1
*/
@@ -549,7 +549,7 @@
$otherpackages[] = $param;
continue;
}
- if (file_exists($param)) {
+ if (@file_exists($param)) {
if (isset($options['force'])) {
$otherpackages[] = $param;
continue;
--
PEAR CVS Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|