cellog Tue Apr 17 23:12:22 2007 UTC
Modified files:
/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.124&r2=1.125&diff_format=u
Index: pear-core/PEAR/Command/Install.php
diff -u pear-core/PEAR/Command/Install.php:1.124
pear-core/PEAR/Command/Install.php:1.125
--- pear-core/PEAR/Command/Install.php:1.124 Wed Apr 11 19:29:08 2007
+++ pear-core/PEAR/Command/Install.php Tue Apr 17 23:12:22 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.124 2007/04/11 19:29:08 cellog Exp $
+ * @version CVS: $Id: Install.php,v 1.125 2007/04/17 23:12:22 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
|