diff options
Diffstat (limited to 'app/Exceptions/AlreadySubscribedException.php')
| -rw-r--r-- | app/Exceptions/AlreadySubscribedException.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Exceptions/AlreadySubscribedException.php b/app/Exceptions/AlreadySubscribedException.php index f85d51300..33b9f9555 100644 --- a/app/Exceptions/AlreadySubscribedException.php +++ b/app/Exceptions/AlreadySubscribedException.php @@ -5,10 +5,10 @@ class FreshRSS_AlreadySubscribed_Exception extends Exception { public function __construct($url, $feedName) { parent::__construct('Already subscribed! ' . $url, 2135); - $this->$feedName = $feedName; + $this->feedName = $feedName; } public function feedName() { - return $this->feedName(); + return $this->feedName; } } |
