Just did the following:

drush dl black_blog
drush en black_blog

Get a WSOD and this in my error log:

PHP Parse error: syntax error, unexpected '*' in /var/www/sites/aaroncraig.com/sites/all/themes/black_blog/templates/node.tpl.php on line 49,

Sure enough, you've got a mistake in commenting out the code here:

      <?/*php if (!$page): ?>
        

print $title_attributes; > print $node_url; "> print $title;

endif; */

Should be

       /*if (!$page): 
        

print $title_attributes; > print $node_url; "> print $title;

endif; */

Comments

aacraig’s picture

Sorry, but the formatting has gotten the better of me.

Here's a clean version of the above:

Broken

      <?/*php if (!$page): ?>
        <div class="article_title"><h2<?php print $title_attributes; ?>><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h2></div>
      <?php endif; */?>

Works:

      <?php /*if (!$page): ?>
        <div class="article_title"><h2<?php print $title_attributes; ?>><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h2></div>
      <?php endif; */?>

zyxware’s picture

Status: Active » Fixed

Hi aacraig,
Please download and check the latest release for this project.
Thanks,
zyxware

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.