slightly better article note display in CDM

master
Andrew Dolgov 11 years ago
parent b389aeb7fc
commit b999f4c75a

@ -96,3 +96,7 @@ div.cdmFeedTitle {
background-repeat : repeat-x;
}
div.articleNote {
border-style : dashed none dashed none;
}

@ -581,6 +581,13 @@ class Feeds extends Handler_Protected {
onclick=\"return cdmClicked(event, $id);\"
id=\"CICD-$id\">";
$reply['content'] .= "<div id=\"POSTNOTE-$id\">";
if ($line['note']) {
$reply['content'] .= format_article_note($id, $line['note']);
}
$reply['content'] .= "</div>";
$reply['content'] .= "<div class=\"cdmContentInner\">";
if ($line["orig_feed_id"]) {
@ -616,12 +623,6 @@ class Feeds extends Handler_Protected {
$line["content_preview"] =& $line["cached_content"];
}
$reply['content'] .= "<div id=\"POSTNOTE-$id\">";
if ($line['note']) {
$reply['content'] .= format_article_note($id, $line['note']);
}
$reply['content'] .= "</div>";
$reply['content'] .= "<span id=\"CWRAP-$id\">";
$reply['content'] .= $line["content"];
$reply['content'] .= "</span>";

Loading…
Cancel
Save