summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-11-30 13:51:54 +0300
committerAndrew Dolgov <[email protected]>2018-11-30 13:51:54 +0300
commit9563e3bcd662b87ea6779714b51afb61571dd32d (patch)
tree2e492c27f08380f1e58458f8546f8aea212e64c9 /classes
parentc8c9a26f3071edc2f0307336b6dd6062e4351773 (diff)
remove expandable CDM headlines
Diffstat (limited to 'classes')
-rwxr-xr-xclasses/feeds.php17
-rw-r--r--classes/pref/prefs.php2
2 files changed, 4 insertions, 15 deletions
diff --git a/classes/feeds.php b/classes/feeds.php
index 0c1db62b6..48e3337e0 100755
--- a/classes/feeds.php
+++ b/classes/feeds.php
@@ -277,7 +277,6 @@ class Feeds extends Handler_Protected {
$lnum = $offset;
$num_unread = 0;
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PS", $timing_info);
- $expand_cdm = get_pref('CDM_EXPANDED');
if (is_object($result)) {
@@ -497,11 +496,9 @@ class Feeds extends Handler_Protected {
}
}
- $expanded_class = $expand_cdm ? "expanded" : "expandable";
-
$content_encoded = htmlspecialchars(json_encode($line["content"]));
- $tmp_content = "<div class=\"cdm $hlc_suffix $expanded_class $class\"
+ $tmp_content = "<div class=\"cdm expanded $hlc_suffix $class\"
id=\"RROW-$id\" data-content=\"$content_encoded\" data-article-id='$id' data-orig-feed-id='$feed_id' $mouseover_attrs>";
$tmp_content .= "<div class=\"cdmHeader\">";
@@ -543,13 +540,6 @@ class Feeds extends Handler_Protected {
<img src=\"images/collapse.png\" onclick=\"cdmCollapseArticle(event, $id)\"
title=\"".__("Collapse article")."\"/></span>";
- if (!$expand_cdm)
- $content_hidden = "style=\"display : none\"";
- else
- $excerpt_hidden = "style=\"display : none\"";
-
- $tmp_content .= "<span $excerpt_hidden id=\"CEXC-$id\" class=\"cdmExcerpt\">" . $content_preview . "</span>";
-
$tmp_content .= "</span>";
if (!$vfeed_group_enabled) {
@@ -578,9 +568,7 @@ class Feeds extends Handler_Protected {
$tmp_content .= "</div>"; //cdmHeader
- $tmp_content .= "<div class=\"cdmContent\" $content_hidden
- onclick=\"return cdmClicked(event, $id, true);\"
- id=\"CICD-$id\">";
+ $tmp_content .= "<div class=\"cdmContent\" onclick=\"return cdmClicked(event, $id, true);\" id=\"CICD-$id\">";
$tmp_content .= "<div id=\"POSTNOTE-$id\">";
if ($line['note']) {
@@ -590,6 +578,7 @@ class Feeds extends Handler_Protected {
if (!$line['lang']) $line['lang'] = 'en';
+ // this is filled from RROW data-content
$tmp_content .= "<div class=\"cdmContentInner\" lang=\"".$line['lang']."\">";
if ($line["orig_feed_id"]) {
diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php
index 9b467ccc1..82456f342 100644
--- a/classes/pref/prefs.php
+++ b/classes/pref/prefs.php
@@ -162,7 +162,7 @@ class Pref_Prefs extends Handler_Protected {
$prefs_blacklist = array("ALLOW_DUPLICATE_POSTS", "STRIP_UNSAFE_TAGS", "REVERSE_HEADLINES",
"SORT_HEADLINES_BY_FEED_DATE", "DEFAULT_ARTICLE_LIMIT",
- "FEEDS_SORT_BY_UNREAD");
+ "FEEDS_SORT_BY_UNREAD", "CDM_EXPANDED");
/* "FEEDS_SORT_BY_UNREAD", "HIDE_READ_FEEDS", "REVERSE_HEADLINES" */