diff options
Diffstat (limited to 'plugins/RSSCloud/LoggingAggregator.php')
-rw-r--r-- | plugins/RSSCloud/LoggingAggregator.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/RSSCloud/LoggingAggregator.php b/plugins/RSSCloud/LoggingAggregator.php index c81a987f7..e37eed16a 100644 --- a/plugins/RSSCloud/LoggingAggregator.php +++ b/plugins/RSSCloud/LoggingAggregator.php @@ -111,12 +111,13 @@ class LoggingAggregatorAction extends Action } header('Content-Type: text/xml'); - echo '<notifyResult success=\'true\' msg=\'Thanks for the update.\' />' . "\n"; + Echo "<notifyResult success='true' msg='Thanks for the update.' />\n"; } $this->ip = $_SERVER['REMOTE_ADDR']; - common_log(LOG_INFO, 'RSSCloud Logging Aggregator - ' . $this->ip . ' claims the feed at ' . + common_log(LOG_INFO, 'RSSCloud Logging Aggregator - ' . + $this->ip . ' claims the feed at ' . $this->url . ' has been updated.'); } |