Skip to content

Commit

Permalink
Fixes a syntax bug in HTMLPage library.
Browse files Browse the repository at this point in the history
  • Loading branch information
JB Lebrun committed Apr 23, 2018
1 parent 3c8d318 commit e67bc1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engine/lib/object/HTMLPage.php.inc
Expand Up @@ -497,7 +497,7 @@ final class HTMLPage {
);

/* check config */
if ($config === false)
if ($config == false)
$config = $defaultConfig;
else
$config = array_merge($defaultConfig, $config);
Expand Down Expand Up @@ -935,4 +935,4 @@ final class HTMLPage {
$this->add_RSSFeed($url, $title);
}
}
?>
?>

0 comments on commit e67bc1f

Please sign in to comment.