From: Wez Furlong Date: Fri, 21 May 2004 16:36:37 +0000 (+0000) Subject: Better error message to save looking in the wrong place. X-Git-Tag: RELEASE_0_1~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e419d735c478242f3e0195daf0cf301befbf0636;p=php Better error message to save looking in the wrong place. --- diff --git a/pear/PEAR/Common.php b/pear/PEAR/Common.php index 4f0d8507f2..1ee82e2844 100644 --- a/pear/PEAR/Common.php +++ b/pear/PEAR/Common.php @@ -1076,7 +1076,7 @@ class PEAR_Common extends PEAR if (!isset($info['version'])) { $errors[] = 'missing version'; } elseif (!$this->validPackageVersion($info['version'])) { - $errors[] = 'invalid package version'; + $errors[] = 'invalid package release version'; } if (empty($info['release_state'])) { $errors[] = 'missing release state';