Skip to content

Commit

Permalink
Remove unneeded PHP tag that triggers an Unreachable code warning
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Delisle <marc@infomarc.info>
  • Loading branch information
lem9 committed Jan 1, 2016
1 parent 6aef0a1 commit acea807
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions templates/navigation/logo.phtml
Expand Up @@ -30,8 +30,9 @@ if (!isset($logo)) {
<!-- LOGO START -->
<?php if (false === $displayLogo) : ?>
<!-- LOGO END -->
<?php return; ?>
<?php endif; ?>
<?php return;
endif;
?>
<div id="pmalogo">
<?php if (true === $useLogoLink) : ?>
<a href="<?php echo $logoLink; ?>"<?php echo isset($linkAttribs) ? ' ' . $linkAttribs : null; ?>>
Expand All @@ -41,4 +42,4 @@ if (!isset($logo)) {
</a>
<?php endif; ?>
</div>
<!-- LOGO END -->
<!-- LOGO END -->

0 comments on commit acea807

Please sign in to comment.