Skip to content

Commit

Permalink
Phpfix got me good here, completed bug hunt
Browse files Browse the repository at this point in the history
  • Loading branch information
jsnmrs committed May 3, 2024
1 parent 6e3eb5a commit d2d82bf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 16 deletions.
5 changes: 1 addition & 4 deletions app/Views/about.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
<?= /**
* @file
* About page template.
*/ $this->include('includes/header'); ?>
<?= $this->include('includes/header'); ?>

<main id="content" class="floor" tabindex="-1">
<div class="wrap">
Expand Down
5 changes: 1 addition & 4 deletions app/Views/error.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
<?= /**
* @file
* Error page (404) template.
*/ $this->include('includes/header'); ?>
<?= $this->include('includes/header'); ?>

<main id="content" class="floor" tabindex="-1">
<div class="wrap">
Expand Down
5 changes: 1 addition & 4 deletions app/Views/submit.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
<?= /**
* @file
* Submit page template.
*/ $this->include('includes/header'); ?>
<?= $this->include('includes/header'); ?>

<main id="content" class="floor" tabindex="-1">
<div class="wrap">
Expand Down
5 changes: 1 addition & 4 deletions app/Views/textlog.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
<?= /**
* @file
* Log template.
*/ $title . "\n\n";
<?= $title . "\n\n";

if (is_array($build) || is_object($build)) {
foreach ($build as $row) {
Expand Down

0 comments on commit d2d82bf

Please sign in to comment.