Home » PEAR » PEAR » Bug #5948
Minor typo in PEAR_Validate
Details
| Submitted | 2005-11-13 11:59 UTC |
|---|---|
| From | heino at php dot net |
| Assigned | cellog |
| Status | Closed |
| Package | PEAR |
| PHP Version | 5.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;
------------------------------------------------------------