diff options
author | Zach Copley <zach@status.net> | 2009-12-14 21:24:49 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-05 23:21:57 -0800 |
commit | 3e6b80d3e99eee4fc916a714f34e7b95ad0455a6 (patch) | |
tree | 4d413b5d2c92646be0227724ce4485bb4f3df259 /plugins/RSSCloud/LoggingAggregator.php | |
parent | 655dbcedb327c79c655b928ba36140519e3b6daf (diff) |
Some phpcs cleanup
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.'); } |