Index: page.tpl.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/lightfantastic/page.tpl.php,v
retrieving revision 1.12
diff -u -r1.12 page.tpl.php
--- page.tpl.php	26 May 2008 22:43:38 -0000	1.12
+++ page.tpl.php	27 May 2008 18:43:37 -0000
@@ -6,15 +6,15 @@
     <title><?php print $head_title ?></title>
     <?php print $head ?>
 
-    <link rel="stylesheet" type="text/css" href="<?php print base_path() . path_to_theme(); ?>/assets/style/initial.css" media="screen, projection" />
+    <link type="text/css" rel="stylesheet" media="screen, projection" href="<?php print base_path() . path_to_theme(); ?>/assets/style/initial.css" />
     <?php print $styles ?>
 
     <!--[if lte IE 6]>
-      <link rel="stylesheet" type="text/css" href="<?php print base_path() . path_to_theme(); ?>/assets/style/ie6.css" />
-    <![endif]-->	
+      <link type="text/css" rel="stylesheet" href="<?php print base_path() . path_to_theme(); ?>/assets/style/ie6.css" />
+    <![endif]-->
 
     <!--[if lt IE 7]>
-      <link rel="stylesheet" type="text/css" href="<?php print base_path() . path_to_theme(); ?>/assets/style/ie7.css" />
+      <link type="text/css" rel="stylesheet" href="<?php print base_path() . path_to_theme(); ?>/assets/style/ie7.css" />
     <![endif]-->
 
     <?php print $scripts ?>
@@ -27,8 +27,8 @@
           <?php if ($search_box || $top) { ?>
             <div id="top">
               <?php print $top; ?>
-              <?php if ($search_box) { print $search_box; } ?>
-              <hr class="hidden clear" />	
+              <?php if ($search_box): print $search_box; endif; ?>
+              <hr class="hidden clear" />
             </div><!-- /top -->
           <?php } ?>
           <div id="logowrap">
@@ -64,7 +64,7 @@
             <?php if ($site_slogan) { ?>
               <p id="tagline"><?php print $site_slogan ?></p>
             <?php } ?>
-            <hr class="hidden clear" />	
+            <hr class="hidden clear" />
           </div>
         </div><!-- /header -->
         <?php if ($sidebar_left || $navigation_left || ($secondary_links && ($secondary_nav == "left"))) { ?>
@@ -78,18 +78,18 @@
               </div>
             </div><!-- /banner -->
           <?php } ?>
-          <?php if (!$is_front && $breadcrumb) { print $breadcrumb; } ?>
+          <?php if (!$is_front && $breadcrumb): print $breadcrumb; endif; ?>
           <?php if ($sidebar_right || $navigation_right || ($secondary_links && ($secondary_nav == "right"))) { ?>
             <div id="main-content">
           <?php } ?>
           <div id="main">
-            <?php if ($pre_content) { print $pre_content; } ?>
-            <?php if ($tabs) { ?><div id="tabs-wrapper"><?php } ?>
-            <?php if ($title) { print '<h1'. ($tabs ? ' class="title with-tabs"' : ' class="title"') .'>'. $title .'</h1>'; } ?>
-            <?php if ($tabs) { ?><?php print $tabs ?></div><!-- /tabs-wrapper --><?php } ?>
-            <?php if (isset($tabs2)) { print $tabs2; } ?>
-            <?php if ($help) { print $help; } ?>
-            <?php if ($show_messages && $messages) { print $messages; } ?>
+            <?php if ($pre_content): print $pre_content; endif; ?>
+            <?php if ($tabs): ?><div id="tabs-wrapper"><?php endif; ?>
+            <?php if ($title): print '<h1'. ($tabs ? ' class="title with-tabs"' : ' class="title"') .'>'. $title .'</h1>'; endif; ?>
+            <?php if ($tabs): ?><?php print $tabs ?></div><!-- /tabs-wrapper --><?php endif; ?>
+            <?php if (isset($tabs2)): print $tabs2; endif; ?>
+            <?php if ($help): print $help; endif; ?>
+            <?php if ($show_messages && $messages): print $messages; endif; ?>
             <?php print $content ?>
           </div><!-- /main -->
           <?php if ($sidebar_right || $navigation_right || ($secondary_links && ($secondary_nav == "right"))) { ?>
@@ -107,7 +107,7 @@
                   <?php print $navigation_right ?>
                 </div><!-- /navigation_right -->
               <?php } ?>
-              <?php if ($sidebar_right) { print $sidebar_right; } ?>
+              <?php if ($sidebar_right): print $sidebar_right; endif; ?>
             </div><!-- /sidebar-right -->
           <?php } ?>
           <hr class="hidden clear" />
@@ -124,28 +124,28 @@
                     <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
                   </div>
                 <?php } ?>
-                <?php if ($navigation_left) { print $navigation_left; } ?>
+                <?php if ($navigation_left): print $navigation_left; endif; ?>
               </div><!-- /navigation_left -->
             <?php } ?>
-            <?php if ($sidebar_left) { print $sidebar_left; } ?>
+            <?php if ($sidebar_left): print $sidebar_left; endif; ?>
           </div><!-- /sidebar-left -->
         <?php } ?>
         <?php if ($sidebar_left || $navigation_left || ($secondary_links && ($secondary_nav == "left"))) { ?>
           <hr class="hidden clear" />
           </div><!-- /content-wrap --></div><!-- /content-outer-wrap --></div><!-- /ie7contenthack -->
         <?php } ?>
-        <?php if ($additional) { ?> 
+        <?php if ($additional) { ?>
           <div id="additional-wrap">
             <div id="additional<?php if ($additional_chunk == "three-box") print "Three-box"; ?>">
               <div class="<?php print $additional_chunk ?>">
-                <?php print $additional ?> 
+                <?php print $additional ?>
               </div>
-              <hr class="hidden clear" />	
+              <hr class="hidden clear" />
             </div>
           </div><!-- /additional-wrap -->
         <?php } ?>
         <div id="footer">
-          <?php if ($bottom) { print $bottom; } ?>
+          <?php if ($bottom): print $bottom; endif; ?>
         </div><!-- /footer -->
       </div><!-- /wrapper -->
     </div><!-- /container -->
Index: node.tpl.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/lightfantastic/node.tpl.php,v
retrieving revision 1.3
diff -u -r1.3 node.tpl.php
--- node.tpl.php	25 May 2008 17:43:26 -0000	1.3
+++ node.tpl.php	27 May 2008 18:43:37 -0000
@@ -1,19 +1,19 @@
 <?php // $Id: node.tpl.php,v 1.3 2008/05/25 17:43:26 brauerranch Exp $ ?>
-<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
+<div id="node-<?php print $node->nid ?>" class="node<?php if ($sticky): print ' sticky'; endif; ?><?php if (!$status): print ' node-unpublished'; endif; ?>">
 	<?php print $picture ?>
 <?php if ($page == 0) { ?>
-	<h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title; ?></a></h2>
+	<h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
 <?php } ?>
 <?php if ($submitted) { ?>
-	<p class="submitted"><?php print $submitted; ?></p>
+	<p class="submitted"><?php print $submitted ?></p>
 <?php } ?>
 	<div class="content">
-		<?php print $content; ?>
+		<?php print $content ?>
 	</div>
 	<div class="meta">
-		<?php if ($taxonomy) { print $terms; } ?>
+		<?php if ($taxonomy): print $terms; endif; ?>
 	</div>
 	<div class="comments_links">
-		<?php if ($links) { print $links; } ?>
+		<?php if ($links): print $links; endif; ?>
 	</div>
 </div>
Index: template.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/lightfantastic/template.php,v
retrieving revision 1.9
diff -u -r1.9 template.php
--- template.php	26 May 2008 22:43:38 -0000	1.9
+++ template.php	27 May 2008 18:43:37 -0000
@@ -39,58 +39,58 @@
   $style .= '<style type="text/css">';
   $style .= "div#container { $site_width }";
   
-  if ($vars['sidebar_left'] || $vars['navigation_left'] || ($vars['secondary_links'] && $vars['secondary_nav'] == 'left')) { 
-  	$style .= "div#content-wrap div#content-inter-wrap { margin-left: -$left_sidebar_width; }";
-  	$style .= "div#content-wrap div#sidebar-left { width: $left_sidebar_width; }";
-  	
-  	$background = 1000 - $left_sidebar_width;
-  	$style .= "div#content-outer-wrap { background-position: -". $background ."px top; }";
-  	$style .= "div#content-wrap div#content { margin-left: $left_sidebar_width; }";
+  if ($vars['sidebar_left'] || $vars['navigation_left'] || ($vars['secondary_links'] && $vars['secondary_nav'] == 'left')) {
+    $style .= "div#content-wrap div#content-inter-wrap { margin-left: -$left_sidebar_width; }";
+    $style .= "div#content-wrap div#sidebar-left { width: $left_sidebar_width; }";
+    
+    $background = 1000 - $left_sidebar_width;
+    $style .= "div#content-outer-wrap { background-position: -". $background ."px top; }";
+    $style .= "div#content-wrap div#content { margin-left: $left_sidebar_width; }";
   }
   
-  if (($vars['sidebar_left'] || $vars['navigation_left']  || ($vars['secondary_links'] && $vars['secondary_nav'] == 'left')) 
-    && ($vars['sidebar_right'] || $vars['navigation_right'] || ($vars['secondary_links'] && $vars['secondary_nav'] == 'right')))  { 
-  	$style .= "div#content-wrap div#content { margin-left: $left_sidebar_width; }";
+  if (($vars['sidebar_left'] || $vars['navigation_left']  || ($vars['secondary_links'] && $vars['secondary_nav'] == 'left'))
+    && ($vars['sidebar_right'] || $vars['navigation_right'] || ($vars['secondary_links'] && $vars['secondary_nav'] == 'right'))) {
+    $style .= "div#content-wrap div#content { margin-left: $left_sidebar_width; }";
   }
   
   if ($vars['sidebar_right'] || $vars['navigation_right'] || ($vars['secondary_links'] && $vars['secondary_nav'] == 'right')) {
-  	$style .= "div#container div#main-content { margin-left: -$right_sidebar_width; }";
-  	$style .= "div#container div#main { margin-left: $right_sidebar_width; }";
-  	$style .= "div#container div#sidebar-right { width: $right_sidebar_width; }";
-  }	
+    $style .= "div#container div#main-content { margin-left: -$right_sidebar_width; }";
+    $style .= "div#container div#main { margin-left: $right_sidebar_width; }";
+    $style .= "div#container div#sidebar-right { width: $right_sidebar_width; }";
+  }
   
   $style .= '</style>';
   
   if ($is_fixed_width) {
-    // IE6 min-width, max-width expression 
+    // IE6 min-width, max-width expression.
     $style .= '
     	<!--[if lte IE 6]>
     		<style type="text/css">
     			div#container { width: expression(document.body.clientWidth < '. ($site_min_width + 1) .' ? "'. $site_min_width .'" : document.body.clientWidth > '. ($site_max_width + 1) .' ? "'. $site_max_width .'" : "100%"); }
     		</style>
     	<![endif]-->';
-  }	
+  }
   
   $vars['layout_style'] = $style;
 
-	// Sets the body-tag class attribute.
-	// Adds 'sidebar-left', 'sidebar-right' or 'sidebars' classes as needed.
-	$vars['body_class'] = isset($vars['body_class']) ? $vars['body_class'] : '';
-	if ((($vars['sidebar_left'] || $vars['navigation_left'] || ($vars['secondary_links'] && ($vars['secondary_nav'] == 'left')))) 
-	  && ($vars['sidebar_right'] || $vars['navigation_right'] || ($vars['secondary_links'] && ($vars['secondary_nav'] == 'right')))) {
-		$body_class = 'sidebars';
-	}
-	else {
-		if ($vars['sidebar_left'] || $vars['navigation_left'] || ($vars['secondary_links'] && ($vars['secondary_nav'] == 'left'))) {
-			$body_class = 'sidebar-left';
-		}
-		if ($vars['sidebar_right'] || $vars['navigation_right'] || ($vars['secondary_links'] && ($vars['secondary_nav'] == 'right'))) {
-			$body_class = 'sidebar-right';
-		}
+  // Sets the body-tag class attribute.
+  // Adds 'sidebar-left', 'sidebar-right' or 'sidebars' classes as needed.
+  $vars['body_class'] = isset($vars['body_class']) ? $vars['body_class'] : '';
+  if ((($vars['sidebar_left'] || $vars['navigation_left'] || ($vars['secondary_links'] && ($vars['secondary_nav'] == 'left'))))
+    && ($vars['sidebar_right'] || $vars['navigation_right'] || ($vars['secondary_links'] && ($vars['secondary_nav'] == 'right')))) {
+    $body_class = 'sidebars';
+  }
+  else {
+    if ($vars['sidebar_left'] || $vars['navigation_left'] || ($vars['secondary_links'] && ($vars['secondary_nav'] == 'left'))) {
+      $body_class = 'sidebar-left';
+    }
+    if ($vars['sidebar_right'] || $vars['navigation_right'] || ($vars['secondary_links'] && ($vars['secondary_nav'] == 'right'))) {
+      $body_class = 'sidebar-right';
+    }
   }
-	if (isset($body_class)) {
+  if (isset($body_class)) {
     $vars['body_class'] = ' class="'. $body_class .'"';
-	}
+  }
 
   // Get published block in 'additional' region and set 'additional_chunk' variable.
   switch (count(block_list('additional'))) {
@@ -124,7 +124,7 @@
     case 3:
       $vars['banner_chunk'] = "chunk-three";
       break;
-	 default:
+    default:
       $vars['banner_chunk'] = "chunk-unknown";
   }
 
@@ -142,7 +142,6 @@
  *   An array containing the breadcrumb links.
  * @return a string containing the breadcrumb output.
  */
-
 function phptemplate_breadcrumb($breadcrumb) {
   if (!empty($breadcrumb)) {
     return '<div id="breadcrumb">'. implode(' &raquo; ', $breadcrumb) .'</div>';
Index: comment.tpl.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/lightfantastic/comment.tpl.php,v
retrieving revision 1.3
diff -u -r1.3 comment.tpl.php
--- comment.tpl.php	25 May 2008 17:43:26 -0000	1.3
+++ comment.tpl.php	27 May 2008 18:43:37 -0000
@@ -1,11 +1,11 @@
 <?php // $Id: comment.tpl.php,v 1.3 2008/05/25 17:43:26 brauerranch Exp $ ?>
-<div class="comments comment<?php print ($comment->new) ? ' comment-new' : ''; print (isset($comment->status) && $comment->status  == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>">
+<div class="comments comment<?php ($comment->new) ? print ' comment-new' : print ''; (isset($comment->status) && $comment->status  == COMMENT_NOT_PUBLISHED) ? print ' comment-unpublished' : print ''; print ' '. $zebra; ?>">
 
   <?php if ($submitted): ?>
-    <p class="submitted"><?php print $submitted; ?></p>
+    <p class="submitted"><?php print $submitted ?></p>
   <?php endif; ?>
 
-  <?php if ($comment->new) : ?>
+  <?php if ($comment->new): ?>
     <span class="new"><?php print drupal_ucfirst($new) ?></span>
   <?php endif; ?>
 
