diff options
author | Jonathan Bauer | 2014-09-15 15:25:11 +0200 |
---|---|---|
committer | Jonathan Bauer | 2014-09-15 15:25:11 +0200 |
commit | 4aa8bd44df746b2a72fa3abfa29b58b5052fc772 (patch) | |
tree | 270f2c3819677722652eb47c8beef87160bcb8cc /apis | |
parent | Add CONFIG_FOOTER option; if set, it will be appended to the bottom of the pa... (diff) | |
download | slx-admin-4aa8bd44df746b2a72fa3abfa29b58b5052fc772.tar.gz slx-admin-4aa8bd44df746b2a72fa3abfa29b58b5052fc772.tar.xz slx-admin-4aa8bd44df746b2a72fa3abfa29b58b5052fc772.zip |
[news-API] tag content as 'content' instead of 'info'
Diffstat (limited to 'apis')
-rw-r--r-- | apis/news.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apis/news.inc.php b/apis/news.inc.php index ace41b21..2c7e2654 100644 --- a/apis/news.inc.php +++ b/apis/news.inc.php @@ -11,9 +11,9 @@ if ($row !== false ) { echo "\t" . '<headline>' . "\n"; echo "\t\t" . $row['title'] . "\n"; echo "\t" . '</headline>' . "\n"; - echo "\t" . "<info>" . "\n"; + echo "\t" . "<content>" . "\n"; echo "\t\t" . $row['content'] . "\n"; - echo "\t" . '</info>' . "\n"; + echo "\t" . '</content>' . "\n"; echo "\t" . "<date>" . "\n"; echo "\t\t" . $row['dateline'] . "\n"; echo "\t" . "</date>" . "\n"; |