1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 04:15:57 +00:00

mobile: sync login stuff and such with desktop version

This commit is contained in:
Andrew Dolgov
2007-03-05 17:27:48 +01:00
parent 6ada2c303e
commit 793185a9a5
6 changed files with 53 additions and 144 deletions

View File

@@ -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");
}
?>