? translations
Index: page.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/garland/page.tpl.php,v
retrieving revision 1.18.2.1
diff -u -p -r1.18.2.1 page.tpl.php
--- page.tpl.php	30 Apr 2009 00:13:31 -0000	1.18.2.1
+++ page.tpl.php	14 Jun 2009 19:25:29 -0000
@@ -12,7 +12,11 @@
       <?php print phptemplate_get_ie_styles(); ?>
     <![endif]-->
   </head>
-  <body<?php print phptemplate_body_class($left, $right); ?>>
+  <body<?php 
+    if ($body_classes) {
+      echo " class=\"$body_classes\"";
+    }
+    ?>>
 
 <!-- Layout -->
   <div id="header-region" class="clear-block"><?php print $header; ?></div>
Index: print.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/garland/print.css,v
retrieving revision 1.3
diff -u -p -r1.3 print.css
--- print.css	6 Sep 2007 21:23:32 -0000	1.3
+++ print.css	14 Jun 2009 19:25:29 -0000
@@ -19,12 +19,12 @@ ul.primary-links, ul.secondary-links,
   display: none;
 }
 
-body.sidebars, body.sideber-left, body.sidebar-right, body {
+body.two-sidebars, body.sideber-left, body.sidebar-right, body {
   width: 640px;
 }
 
-body.sidebar-left #center, body.sidebar-right #center, body.sidebars #center,
-body.sidebar-left #squeeze, body.sidebar-right #squeeze, body.sidebars #squeeze {
+body.sidebar-left #center, body.sidebar-right #center, body.two-sidebars #center,
+body.sidebar-left #squeeze, body.sidebar-right #squeeze, body.two-sidebars #squeeze {
   margin: 0;
 }
 
Index: style.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/garland/style.css,v
retrieving revision 1.38.2.2
diff -u -p -r1.38.2.2 style.css
--- style.css	27 Apr 2009 14:20:53 -0000	1.38.2.2
+++ style.css	14 Jun 2009 19:25:30 -0000
@@ -383,7 +383,7 @@ table .form-button, table .form-submit {
 }
 
 /* With 3 columns, require a minimum width of 1000px to ensure there is enough horizontal space. */
-body.sidebars {
+body.two-sidebars {
   min-width: 980px;
 }
 /* With 2 columns, require a minimum width of 800px. */
@@ -404,7 +404,7 @@ body.sidebar-left #center {
 body.sidebar-right #center {
   margin-right: -210px;
 }
-body.sidebars #center {
+body.two-sidebars #center {
   margin: 0 -210px;
 }
 
@@ -415,7 +415,7 @@ body.sidebar-left #squeeze {
 body.sidebar-right #squeeze {
   margin-right: 210px;
 }
-body.sidebars #squeeze {
+body.two-sidebars #squeeze {
   margin: 0 210px;
 }
 
@@ -504,7 +504,7 @@ body.sidebar-right #footer {
   margin-right: -210px;
 }
 
-body.sidebars #footer {
+body.two-sidebars #footer {
   margin: 0 -210px;
 }
 
Index: template.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/garland/template.php,v
retrieving revision 1.16.2.1
diff -u -p -r1.16.2.1 template.php
--- template.php	25 Feb 2009 11:47:37 -0000	1.16.2.1
+++ template.php	14 Jun 2009 19:25:30 -0000
@@ -2,29 +2,6 @@
 // $Id: template.php,v 1.16.2.1 2009/02/25 11:47:37 goba Exp $
 
 /**
- * Sets the body-tag class attribute.
- *
- * Adds 'sidebar-left', 'sidebar-right' or 'sidebars' classes as needed.
- */
-function phptemplate_body_class($left, $right) {
-  if ($left != '' && $right != '') {
-    $class = 'sidebars';
-  }
-  else {
-    if ($left != '') {
-      $class = 'sidebar-left';
-    }
-    if ($right != '') {
-      $class = 'sidebar-right';
-    }
-  }
-
-  if (isset($class)) {
-    print ' class="'. $class .'"';
-  }
-}
-
-/**
  * Return a themed breadcrumb trail.
  *
  * @param $breadcrumb
