summaryrefslogtreecommitdiff
path: root/classes/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-12-24 15:52:59 +0400
committerAndrew Dolgov <[email protected]>2012-12-24 15:52:59 +0400
commitf16116834e310a622c38a90b04daf36085066999 (patch)
tree5ca53f8a9252f437ae143b4073f6e0ba91ce9126 /classes/backend.php
parentebff9ef7c65054c2cda3b0baac550654abf285c8 (diff)
split digest stuff into digest.php
Diffstat (limited to 'classes/backend.php')
-rw-r--r--classes/backend.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/classes/backend.php b/classes/backend.php
index aae73f2ef..42dfb5474 100644
--- a/classes/backend.php
+++ b/classes/backend.php
@@ -1,6 +1,5 @@
<?php
class Backend extends Handler {
-
function loading() {
header("Content-type: text/html");
print __("Loading, please wait...") . " " .
@@ -10,6 +9,8 @@ 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[3] = "<pre>" . $rv[3] . "</pre>";