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-04-25 04:50 pm

[dw-free] Negatives and Transmogrified should use the page::print_wrapper functions

[commit: http://hg.dwscoalition.org/dw-free/rev/731137ca7914]

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

Negatives to use Page::print_wrapper functions

Patch by [personal profile] aveleh.

Files modified:
  • bin/upgrading/s2layers/negatives/layout.s2
--------------------------------------------------------------------------------
diff -r 97b598bd27a9 -r 731137ca7914 bin/upgrading/s2layers/negatives/layout.s2
--- a/bin/upgrading/s2layers/negatives/layout.s2	Sun Apr 26 00:23:21 2009 +0800
+++ b/bin/upgrading/s2layers/negatives/layout.s2	Sat Apr 25 16:46:55 2009 +0000
@@ -563,7 +563,7 @@ function Page::print()
         $this->print_head_title();
     println "</head>";
 
-    println "<body>";
+        $this->print_wrapper_start();
         $this->print_control_strip();
         println "<div id=\"header\">";
         $this->print_module_section("two");
@@ -585,7 +585,7 @@ function Page::print()
         $this->print_module_section("three");
         println "<div>";
 
-    println "</body>";
+    $this->print_wrapper_end();
     println "</html>";
 }
 
--------------------------------------------------------------------------------