summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cdm.css4
-rw-r--r--classes/feeds.php13
2 files changed, 11 insertions, 6 deletions
diff --git a/cdm.css b/cdm.css
index 0e9b0468e..78d919aea 100644
--- a/cdm.css
+++ b/cdm.css
@@ -96,3 +96,7 @@ div.cdmFeedTitle {
background-repeat : repeat-x;
}
+div.articleNote {
+ border-style : dashed none dashed none;
+}
+
diff --git a/classes/feeds.php b/classes/feeds.php
index 2cef8f750..b57f66a6f 100644
--- a/classes/feeds.php
+++ b/classes/feeds.php
@@ -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>";