diff options
Diffstat (limited to 'modules/backend.class')
-rw-r--r-- | modules/backend.class | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/modules/backend.class b/modules/backend.class index 04e25520d..2028c5d87 100644 --- a/modules/backend.class +++ b/modules/backend.class @@ -37,7 +37,6 @@ class backend { while ($headline = db_fetch_object($result)) { array_push($this->headlines, "<A HREF=\"$headline->link\">$headline->title</A>"); } - } else { $this->site = $site; @@ -94,9 +93,6 @@ class backend { $title = ereg_replace(".*<title>", "", $item); $title = ereg_replace("</title>.*", "", $title); - // Clean headlines: - $title = stripslashes($title); - // Count the number of stories: $number += 1; @@ -145,7 +141,6 @@ class backend { } // Add timestamp: $update = round((time() - $this->timestamp) / 60); - $content .= "<P ALIGN=\"right\">[ <A HREF=\"backend.php?op=reset&site=$this->site\"><FONT COLOR=\"$theme->hlcolor2\">reset</FONT></A> | updated $update min. ago ]</P>"; // Display box: $theme->box("$this->site", $content); |