summaryrefslogtreecommitdiff
path: root/mobile/tt-rss.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-03-05 17:27:48 +0100
committerAndrew Dolgov <[email protected]>2007-03-05 17:27:48 +0100
commit793185a9a51e3c5a104f4addb736b6372516d17e (patch)
tree6806b3f72e0959362cdc9f73476a5b922614fb08 /mobile/tt-rss.php
parent6ada2c303efd52d0486873e231483b45db87ee0d (diff)
mobile: sync login stuff and such with desktop version
Diffstat (limited to 'mobile/tt-rss.php')
-rw-r--r--mobile/tt-rss.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/mobile/tt-rss.php b/mobile/tt-rss.php
index 890c1e0a1..d75796a39 100644
--- a/mobile/tt-rss.php
+++ b/mobile/tt-rss.php
@@ -1,4 +1,6 @@
<?php
+ error_reporting(E_ERROR | E_WARNING | E_PARSE);
+
require_once "../config.php";
require_once "functions.php";
require_once "../functions.php";
@@ -11,7 +13,7 @@
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
- login_sequence($link);
+ login_sequence($link, true);
/* perform various redirect-needing subops */
@@ -65,7 +67,7 @@
} else if ($go == "view") {
render_article($link);
} else {
- print "Function not implemented";
+ print __("Internal error: Function not implemented");
}
?>