Index: themes/bluemarine/box.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/bluemarine/box.tpl.php,v
retrieving revision 1.1
diff -u -p -r1.1 box.tpl.php
--- themes/bluemarine/box.tpl.php	4 May 2005 18:12:17 -0000	1.1
+++ themes/bluemarine/box.tpl.php	24 Feb 2006 15:10:55 -0000
@@ -1,5 +1,5 @@
   <div class="box">
-    <h2 class="title"><?php print $title; ?></h2>
+    <?php if ($title) { ?><h2 class="title"><?php print $title; ?></h2><?php } ?>
     <div class="content"><?php print $content; ?></div>
  </div>
 
Index: themes/engines/phptemplate/box.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/engines/phptemplate/box.tpl.php,v
retrieving revision 1.1
diff -u -p -r1.1 box.tpl.php
--- themes/engines/phptemplate/box.tpl.php	4 May 2005 18:12:17 -0000	1.1
+++ themes/engines/phptemplate/box.tpl.php	24 Feb 2006 15:10:55 -0000
@@ -1,4 +1,4 @@
 <div class="box">
-  <h2><?php print $title ?></h2>
+  <?php if ($title) { ?><h2 class="title"><?php print $title; ?></h2><?php } ?>
   <div class="content"><?php print $content ?></div>
 </div>
Index: themes/pushbutton/box.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/pushbutton/box.tpl.php,v
retrieving revision 1.1
diff -u -p -r1.1 box.tpl.php
--- themes/pushbutton/box.tpl.php	5 May 2005 10:58:27 -0000	1.1
+++ themes/pushbutton/box.tpl.php	24 Feb 2006 15:10:55 -0000
@@ -1,4 +1,4 @@
 <div class="box">
-  <h2 class="title"><?php print $title ?></h2>
+  <?php if ($title) { ?><h2 class="title"><?php print $title ?></h2><?php } ?>
   <div class="content"><?php print $content ?></div>
 </div>
\ No newline at end of file
