X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=classes%2Fbackend.php;h=d5d0f5a01ba1b94e9fa2c6ceb57019c091837b6d;hb=81fc862e370a1dfbd3941206fd00076e3cbf0551;hp=7848b071435037ad436782bdeb616b14caccc155;hpb=e8133ac1cb618545c55b8405faef5f43a5feb636;p=tt-rss.git diff --git a/classes/backend.php b/classes/backend.php index 7848b071..d5d0f5a0 100644 --- a/classes/backend.php +++ b/classes/backend.php @@ -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] = "
" . $rv[3] . "
"; @@ -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) { @@ -29,6 +27,10 @@ class Backend extends Handler { array_push($omap[$action], $sequence); } + print_notice("". + __("Other interface tips are available in the Tiny Tiny RSS wiki.") . + ""); + print ""; - - print "

". - __("Other interface tips are available in the Tiny Tiny RSS wiki.") . - "

"; } 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').""; */ } -} -?> +} \ No newline at end of file