]> git.wh0rd.org - tt-rss.git/blobdiff - classes/backend.php
minor css fixes (mostly for zoom mode)
[tt-rss.git] / classes / backend.php
index c03d583dba6bd355cb6f4d4b2f51c0049726f8f2..d5d0f5a01ba1b94e9fa2c6ceb57019c091837b6d 100644 (file)
@@ -9,9 +9,7 @@ class Backend extends Handler {
        function digestTest() {
                header("Content-type: text/html");
 
-               require_once "digest.php";
-
-               $rv = prepare_headlines_digest($this->link, $_SESSION['uid'], 1, 1000);
+               $rv = Digest::prepare_headlines_digest($_SESSION['uid'], 1, 1000);
 
                $rv[3] = "<pre>" . $rv[3] . "</pre>";
 
@@ -19,8 +17,8 @@ class Backend extends Handler {
        }
 
        private function display_main_help() {
-               $info = get_hotkeys_info($this->link);
-               $imap = get_hotkeys_map($this->link);
+               $info = get_hotkeys_info();
+               $imap = get_hotkeys_map();
                $omap = array();
 
                foreach ($imap[1] as $sequence => $action) {
@@ -86,7 +84,7 @@ class Backend extends Handler {
        }
 
        function help() {
-               $topic = basename($_REQUEST["topic"]);
+               $topic = basename(clean($_REQUEST["topic"]));
 
                switch ($topic) {
                case "main":
@@ -115,5 +113,4 @@ class Backend extends Handler {
                        __('Close this window')."</button></div>"; */
 
        }
-}
-?>
+}
\ No newline at end of file