afuna: Cat under a blanket. Text: "Cats are just little people with Fur and Fangs" (Default)
afuna ([personal profile] afuna) wrote in [site community profile] changelog2009-06-28 10:02 am

[dw-free] "parent" class in core2 CSS causes CSS cleaner to choke

[commit: http://hg.dwscoalition.org/dw-free/rev/18bbc1cf5091]

http://bugs.dwscoalition.org/show_bug.cgi?id=975

Use "commentparent" instead of "parent".

Patch by [personal profile] laitaine.

Files modified:
  • bin/upgrading/s2layers/core2.s2
--------------------------------------------------------------------------------
diff -r c8ba1a1ed789 -r 18bbc1cf5091 bin/upgrading/s2layers/core2.s2
--- a/bin/upgrading/s2layers/core2.s2	Sun Jun 28 09:44:31 2009 +0000
+++ b/bin/upgrading/s2layers/core2.s2	Sun Jun 28 09:59:37 2009 +0000
@@ -3896,7 +3896,7 @@ function Comment::print_interaction_link
         $this->print_reply_link({"linktext" => $*text_comment_reply});
         """</li>\n""";
     }
-    if ($this.parent_url != "") { print safe """<li class="link parent"><a href="$this.parent_url">$*text_comment_parent</a></li>\n"""; }
+    if ($this.parent_url != "") { print safe """<li class="link commentparent"><a href="$this.parent_url">$*text_comment_parent</a></li>\n"""; }
     if ($this.thread_url != "") {
         print safe """<li class="link thread"><a href="$this.thread_url">$*text_comment_thread</a></li>\n""";
         var Link expand_link = $this->get_link("expand_comments");
--------------------------------------------------------------------------------