mobile/classic: remove USER_STYLESHEET_URL
This commit is contained in:
parent
c9b63492fa
commit
7fc715a997
2 changed files with 6 additions and 11 deletions
|
@ -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") {
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue