Skip to content

Commit

Permalink
fixing coding standards violation: Single-line if statements should o…
Browse files Browse the repository at this point in the history
…nly be used when breaking normal execution
  • Loading branch information
bobeagan committed Dec 30, 2010
1 parent 59282f7 commit 17bcd54
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion views/codebench.php
Expand Up @@ -14,7 +14,9 @@
<head>

<meta charset="utf-8" />
<title><?php if ($class !== '') echo $class, ' · ' ?>Codebench</title>
<title><?php if ($class !== ''): ?>
<?php echo $class, ' · ' ?>
<?php endif; ?>Codebench</title>

<style>
/* General styles*/
Expand Down

0 comments on commit 17bcd54

Please sign in to comment.