summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2009-12-29 03:52:02 +0000
committerZach Copley <zach@status.net>2010-01-05 23:21:57 -0800
commitfd33865258644d5f41341e8efa239e2e4d064897 (patch)
tree7b53d7d35c6c1700dfd013cbe103d05e1209730e
parent3e6b80d3e99eee4fc916a714f34e7b95ad0455a6 (diff)
Fix subscription path in link element
-rw-r--r--plugins/RSSCloud/RSSCloudPlugin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/RSSCloud/RSSCloudPlugin.php b/plugins/RSSCloud/RSSCloudPlugin.php
index db2cdd74d..4b9812a47 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)) {