PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » PEAR » PEAR » Bug #5948

Minor typo in PEAR_Validate

Details

Submitted2005-11-13 11:59 UTC
Fromheino at php dot net
Assignedcellog
StatusClosed
PackagePEAR
PHP Version5.1.0
Roadmaps(Not assigned)

Comments

[2005-11-13 11:59 UTC] heino at php dot net

Description:
------------
Just a missing space character ;-)

------------------------------------------------------------
--- Validate.php.orig 2005-11-13 11:48:15.000000000 +0100
+++ Validate.php 2005-11-13 12:56:37.742941840 +0100
@@ -452,7 +452,7 @@
if ($this->_state == PEAR_VALIDATE_PACKAGING &&
$this->_packagexml->getDate() != date('Y-m-d')) {
$this->_addWarning('date', 'Release Date "' .
- $this->_packagexml->getDate() . '"is not today');
+ $this->_packagexml->getDate() . '" is not today');
}
}
return true;
------------------------------------------------------------