diff options
Diffstat (limited to 'apis/news.inc.php')
-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 2c7e2654..ace41b21 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" . "<content>" . "\n"; + echo "\t" . "<info>" . "\n"; echo "\t\t" . $row['content'] . "\n"; - echo "\t" . '</content>' . "\n"; + echo "\t" . '</info>' . "\n"; echo "\t" . "<date>" . "\n"; echo "\t\t" . $row['dateline'] . "\n"; echo "\t" . "</date>" . "\n"; |