Removed escape characters no longer needed in templates

This commit is contained in:
Alejandro Celaya 2019-09-12 19:45:24 +02:00
parent bd97804ca6
commit 01d62b7aea
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@
<?php if ($status !== 404): ?>
<p><?= sprintf('We encountered a %s %s error.', $status, $reason) ?></p>
<?php else: ?>
<p>'This short URL doesn\'t seem to be valid.</p>
<p>'This short URL doesn't seem to be valid.</p>
<p>'Make sure you included all the characters, with no extra punctuation.</p>
<?php endif; ?>
<?php $this->end() ?>

View file

@ -14,6 +14,6 @@
<?php $this->start('main') ?>
<h1>Oops!</h1>
<hr>
<p>This short URL doesn\'t seem to be valid.</p>
<p>This short URL doesn't seem to be valid.</p>
<p>Make sure you included all the characters, with no extra punctuation.</p>
<?php $this->end() ?>