From 34fdad8d508a6ee33660fb110baa47f1ba0441ac Mon Sep 17 00:00:00 2001 From: Mateusz Uzdowski Date: Fri, 20 Jul 2012 09:08:40 +1200 Subject: [PATCH] Minor typo in RSS feed. --- api/RSSFeed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/RSSFeed.php b/api/RSSFeed.php index 08bcbbe07..d1da508b4 100644 --- a/api/RSSFeed.php +++ b/api/RSSFeed.php @@ -339,6 +339,6 @@ class RSSFeed_Entry extends ViewableData { function AbsoluteLink() { if($this->failover->hasMethod('AbsoluteLink')) return $this->failover->AbsoluteLink(); else if($this->failover->hasMethod('Link')) return Director::absoluteURL($this->failover->Link()); - else user_error($this->failover->class . " object has either an AbsoluteLink nor a Link method. Can't put a link in the RSS feed", E_USER_WARNING); + else user_error($this->failover->class . " object has neither an AbsoluteLink nor a Link method. Can't put a link in the RSS feed", E_USER_WARNING); } }