fu: Close-up of Fu, bringing a scoop of water to her mouth (Default)
fu ([personal profile] fu) wrote in [site community profile] changelog2011-05-26 05:30 am

[dw-free] Reading Page Subtitle always takes up space

[commit: http://hg.dwscoalition.org/dw-free/rev/66dc437fddf0]

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

Only include the HTML elements when there's an applicable subtitle.

Patch by [personal profile] fu.

Files modified:
  • bin/upgrading/s2layers/core2.s2
--------------------------------------------------------------------------------
diff -r aad8d272cb59 -r 66dc437fddf0 bin/upgrading/s2layers/core2.s2
--- a/bin/upgrading/s2layers/core2.s2	Tue May 24 16:25:27 2011 +0800
+++ b/bin/upgrading/s2layers/core2.s2	Thu May 26 13:30:28 2011 +0800
@@ -3608,7 +3608,7 @@
     if ($.friends_subtitle){
         """<h2 id="subtitle"><span>""" + $.friends_subtitle + """</span></h2>""";
     } elseif ($.friends_title) {
-    } else {
+    } elseif ($.global_subtitle) {
         """<h2 id="subtitle"><span>""" + $.global_subtitle + """</span></h2>""";
     }
 }
--------------------------------------------------------------------------------