summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mobile/classic/index.php14
-rw-r--r--modules/pref-prefs.php3
2 files changed, 6 insertions, 11 deletions
diff --git a/mobile/classic/index.php b/mobile/classic/index.php
index 21f170106..db2215b24 100644
--- a/mobile/classic/index.php
+++ b/mobile/classic/index.php
@@ -5,11 +5,11 @@
require_once "../../config.php";
require_once "functions.php";
- require_once "../../functions.php";
+ require_once "../../functions.php";
require_once "../../sessions.php";
- require_once "../../version.php";
+ require_once "../../version.php";
require_once "../../db-prefs.php";
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
@@ -24,7 +24,7 @@
$go = $_GET["go"];
if ($subop == "tc" && !$go) {
-
+
$cat_id = db_escape_string($_GET["id"]);
toggle_collapse_cat($link, $cat_id);
@@ -89,11 +89,7 @@
<link rel="stylesheet" type="text/css" href="mobile.css">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="mobile.js"></script>
-
- <?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
- <?php if ($user_css_url) { ?>
- <link rel="stylesheet" type="text/css" href="<?php echo $user_css_url ?>"/>
- <?php } ?>
+ <?php print_user_stylesheet($link) ?>
</head>
<body id="ttrssMobile">
@@ -102,7 +98,7 @@
if (!$go) {
render_feeds_list($link);
} else if ($go == "vf") {
- render_headlines($link);
+ render_headlines($link);
} else if ($go == "view") {
render_article($link);
} else if ($go == "sform") {
diff --git a/modules/pref-prefs.php b/modules/pref-prefs.php
index c78937dc8..191facfd1 100644
--- a/modules/pref-prefs.php
+++ b/modules/pref-prefs.php
@@ -5,8 +5,7 @@
$subop = $_REQUEST["subop"];
- $prefs_blacklist = array("HIDE_READ_FEEDS", "FEEDS_SORT_BY_UNREAD",
- "USER_STYLESHEET_URL");
+ $prefs_blacklist = array("HIDE_READ_FEEDS", "FEEDS_SORT_BY_UNREAD");
$profile_blacklist = array("ALLOW_DUPLICATE_POSTS", "PURGE_OLD_DAYS",
"PURGE_UNREAD_ARTICLES", "DIGEST_ENABLE", "DIGEST_CATCHUP",