Index: page.tpl.php
===================================================================
RCS file: /cvs/drupal/contributions/themes/spreadfirefox/page.tpl.php,v
retrieving revision 1.22
diff -u -r1.22 page.tpl.php
--- page.tpl.php	2 Nov 2008 09:21:07 -0000	1.22
+++ page.tpl.php	11 Dec 2008 22:14:57 -0000
@@ -56,17 +56,17 @@
 <!-- END: HEADER-->
 <hr class="hide" />  
     <div class="columns">
-      <?php if ($left != '') { ?>
+      <?php if ($sidebar_left != '') { ?>
       <div class="leftcolumn sidebar" id="sidebar-left">
         <div class="leftpadding">
-            <?php print $left; ?>
+            <?php print $sidebar_left; ?>
           </div>
         </div>
       <?php } ?>
-      <?php if ($right != '') { ?>
+      <?php if ($sidebar_right != '') { ?>
       <div class="rightcolumn sidebar" id="sidebar-right">
         <div class="rightpadding">
-          <?php print $right; ?>
+          <?php print $sidebar_right; ?>
         </div>
       </div>
       <?php } ?>
Index: spreadfirefox.info
===================================================================
RCS file: /cvs/drupal/contributions/themes/spreadfirefox/spreadfirefox.info,v
retrieving revision 1.3
diff -u -r1.3 spreadfirefox.info
--- spreadfirefox.info	4 Nov 2008 13:44:29 -0000	1.3
+++ spreadfirefox.info	11 Dec 2008 22:13:42 -0000
@@ -5,8 +5,8 @@
 core = 6.x
 engine = phptemplate
 regions[header] = Header
-regions[left] = Left sidebar
-regions[right] = Right sidebar
+regions[sidebar_left] = Left sidebar
+regions[sidebar_right] = Right sidebar
 regions[content] = Content
 regions[footer] = Footer
 stylesheets[all][] = style.css

