cleaning code

This commit is contained in:
Diego Najar 2017-10-22 21:28:44 +02:00
parent 25d2a113fd
commit c94c919f94
2 changed files with 4 additions and 6 deletions

View File

@ -16,15 +16,14 @@ include(PATH_RULES.'99.themes.php');
Theme::plugins('beforeSiteLoad'); Theme::plugins('beforeSiteLoad');
// Theme init.php // Theme init.php
if( Sanitize::pathFile(PATH_THEMES, $Site->theme().DS.'init.php') ) { if (Sanitize::pathFile(PATH_THEMES, $Site->theme().DS.'init.php')) {
include(PATH_THEMES.$Site->theme().DS.'init.php'); include(PATH_THEMES.$Site->theme().DS.'init.php');
} }
// Theme HTML // Theme HTML
if( Sanitize::pathFile(PATH_THEMES, $Site->theme().DS.'index.php') ) { if (Sanitize::pathFile(PATH_THEMES, $Site->theme().DS.'index.php')) {
include(PATH_THEMES.$Site->theme().DS.'index.php'); include(PATH_THEMES.$Site->theme().DS.'index.php');
} } else {
else {
$Language->p('Please check your theme configuration'); $Language->p('Please check your theme configuration');
} }

View File

@ -8,8 +8,7 @@
*/ */
// Check if Bludit is installed // Check if Bludit is installed
if( !file_exists('bl-content/databases/site.php') ) if (!file_exists('bl-content/databases/site.php')) {
{
header('Location:./install.php'); header('Location:./install.php');
exit('<a href="./install.php">Install Bludit first.</a>'); exit('<a href="./install.php">Install Bludit first.</a>');
} }