Skip to content

Commit

Permalink
Autofixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Morris committed Feb 2, 2024
1 parent 03e7ede commit 8b5a30f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion app/Config/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ class Cache extends BaseConfig
*
* @see https://codeigniter.com/user_guide/libraries/caching.html#memcached
*
* @var array<string, boolean|int|string>
* @var array<string, bool|int|string>
*/
public $memcached = [
'host' => '127.0.0.1',
Expand Down
24 changes: 12 additions & 12 deletions app/Views/includes/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@
if ($_ENV['CI_ENVIRONMENT'] === 'development') {
echo '[DEV] ';
}
if (isset($build['site_name'])) {
echo $build['site_name'] . ' | ';
}
if (isset($build['video_title'])) {
echo $build['video_title'] . ' | ';
}
if (isset($page) && $page >= 2 && isset($endpage)) {
echo 'Recent Videos ' . $page . ' of ' . $endpage . ' | ';
}
if (isset($title)) {
echo esc($title) . ' | ';
}
if (isset($build['site_name'])) {
echo $build['site_name'] . ' | ';
}
if (isset($build['video_title'])) {
echo $build['video_title'] . ' | ';
}
if (isset($page) && $page >= 2 && isset($endpage)) {
echo 'Recent Videos ' . $page . ' of ' . $endpage . ' | ';
}
if (isset($title)) {
echo esc($title) . ' | ';
}
?>BMXfeed</title>
<meta charset="utf-8">
<meta name="description" content="BMXfeed is a bmx news, video aggregator and RSS feed directory">
Expand Down

0 comments on commit 8b5a30f

Please sign in to comment.