X-Git-Url: https://disinclined.org/git/?a=blobdiff_plain;f=cms.php;h=1f455a4c1c35f480877bc552295474c1251fe3ed;hb=4a70b93a36c54e64e32e6d34e8d79dbb8fc8789c;hp=b4790b2f0e8ef9b9ae62b5d71c26f2c0b49515ec;hpb=bc92e5a9bf480ef176836b84adb8768400adcbba;p=dylansserver.git diff --git a/cms.php b/cms.php index b4790b2..1f455a4 100644 --- a/cms.php +++ b/cms.php @@ -487,18 +487,15 @@ class archive extends cms { class rss extends cms { + public function display() { + require_once("view/rss.php"); + } + + public function display_items() { $result = $this->db->query("SELECT date_posted, title, text, url FROM notes ORDER BY date_posted DESC LIMIT 5"); - echo << - - dylansserver.com/notes/rss - http://dylansserver.com/notes - dylansserver.com/notes/rss - -END_OF_ENTRY; while ($entry = $result->fetch_object()) { $title = $entry->title; $date_posted = $entry->date_posted; @@ -514,18 +511,13 @@ END_OF_ENTRY; $description = substr($text, '0', ($end_of_first_sentence + 1)); } } - echo << - $title - $url - $url - $description - -END_OF_ENTRY; + echo ""; + echo " $title"; + echo " $url"; + echo " $url"; + echo " $description"; + echo ""; } - echo ""; - echo ""; - } }