Re: [PEAR-CVS] svn: /pear/pear-core/trunk/PEAR/ REST.php
[email protected] (Helgi Þormar Þorbjörnsson) Sun, 6 Mar 2011 22:54:44 +0000
| Newsgroups | php.pear.cvs,php.pear.core |
|---|---|
| Message-ID | <[email protected]> |
Thanks for the commit.
In the future, please refrain from committing to packages which have active developers; In my case, I like knowing exactly what's going in and keeping the appropriate changelogs updated.
- Helgi
On 6 Mar 2011, at 22:47, Daniel O'Connor wrote:
> clockwerx Sun, 06 Mar 2011 22:47:43 +0000
>
> Revision: http://svn.php.net/viewvc?view=revision&revision=308983
>
> Log:
> Bug #18340raiseErro typo
>
> Bug: http://pear.php.net/bugs/18340 (unknown)
>
> Changed paths:
> U pear/pear-core/trunk/PEAR/REST.php
>
> Modified: pear/pear-core/trunk/PEAR/REST.php
> ===================================================================
> --- pear/pear-core/trunk/PEAR/REST.php 2011-03-06 22:26:21 UTC (rev 308982)
> +++ pear/pear-core/trunk/PEAR/REST.php 2011-03-06 22:47:43 UTC (rev 308983)
> @@ -102,7 +102,7 @@
> // reset the age of the cache if the server says it was unmodified
> $result = $this->saveCache($url, $ret, null, true, $cacheId);
> if (PEAR::isError($result)) {
> - return PEAR::raiseErro($result->getMessage());
> + return PEAR::raiseError($result->getMessage());
> }
> }
>
> @@ -122,7 +122,7 @@
> if ($forcestring) {
> $result = $this->saveCache($url, $content, $lastmodified, false, $cacheId);
> if (PEAR::isError($result)) {
> - return PEAR::raiseErro($result->getMessage());
> + return PEAR::raiseError($result->getMessage());
> }
>
> return $content;
> @@ -162,7 +162,7 @@
>
> $result = $this->saveCache($url, $content, $lastmodified, false, $cacheId);
> if (PEAR::isError($result)) {
> - return PEAR::raiseErro($result->getMessage());
> + return PEAR::raiseError($result->getMessage());
> }
>
> return $content;
> @@ -464,4 +464,4 @@
>
> return $data;
> }
> -}
> \ No newline at end of file
> +}
>
> --
> PEAR CVS Mailing List (http://pear.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php