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-05-16 01:44 pm

[dw-free] Core 2: need divider between Previous and Next

[commit: http://hg.dwscoalition.org/dw-free/rev/843d67841075]

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

Add divider

Patch by [personal profile] wyntarvox.

Files modified:
  • bin/upgrading/s2layers/core2.s2
--------------------------------------------------------------------------------
diff -r 95b235f654e5 -r 843d67841075 bin/upgrading/s2layers/core2.s2
--- a/bin/upgrading/s2layers/core2.s2	Sat May 16 13:12:11 2009 +0000
+++ b/bin/upgrading/s2layers/core2.s2	Sat May 16 13:44:10 2009 +0000
@@ -3874,6 +3874,9 @@ function RecentPage::print_navigation() 
     if ( not $empty ) { "<ul>"; }
     if ( $.nav.backward_url != "" ) {
         print safe """<li class="page-back"><a href="$.nav.backward_url">""" + get_plural_phrase( $.nav.backward_count, "text_skiplinks_back" ) + "</a></li>\n";
+    }
+    if ( $.nav.backward_url != "" and $.nav.forward_url != "" ) {
+        print safe """<li class="page-separator">|</li>""";
     }
     if ( $.nav.forward_url != "" ) {
         print safe """<li class="page-forward"><a href="$.nav.forward_url">""" + get_plural_phrase( $.nav.forward_count, "text_skiplinks_forward" ) + "</a></li>\n";
--------------------------------------------------------------------------------