From: Zach Copley Date: Tue, 29 Dec 2009 03:52:02 +0000 (+0000) Subject: Fix subscription path in link element X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fd33865258644d5f41341e8efa239e2e4d064897;p=quix0rs-gnu-social.git Fix subscription path in link element --- diff --git a/plugins/RSSCloud/RSSCloudPlugin.php b/plugins/RSSCloud/RSSCloudPlugin.php index db2cdd74d7..4b9812a479 100644 --- a/plugins/RSSCloud/RSSCloudPlugin.php +++ b/plugins/RSSCloud/RSSCloudPlugin.php @@ -70,7 +70,7 @@ class RSSCloudPlugin extends Plugin // set defaults - $local_server = parse_url(common_path('/main/rsscloud/request_notify')); + $local_server = parse_url(common_path('main/rsscloud/request_notify')); if (empty($this->domain)) { $this->domain = $local_server['host']; @@ -81,7 +81,7 @@ class RSSCloudPlugin extends Plugin } if (empty($this->path)) { - $this->path = '/main/rsscloud/request_notify'; + $this->path = $local_server['path']; } if (empty($this->funct)) {