Set to default theme when XE Installation

This commit is contained in:
izuzero 2015-03-31 15:21:26 +09:00
parent b5e67beacd
commit d366af0620
2 changed files with 8 additions and 7 deletions

View file

@ -27,10 +27,10 @@ class messageView extends message
{
$config = new stdClass();
}
if(!$config->skin)
{
$config->skin = 'default';
$config->skin = 'xedition';
$template_path = sprintf('%sskins/%s', $this->module_path, $config->skin);
}
else
@ -52,7 +52,7 @@ class messageView extends message
// Get the member configuration
$member_config = $oModuleModel->getModuleConfig('member');
Context::set('member_config', $member_config);
// Set a flag to check if the https connection is made when using SSL and create https url
// Set a flag to check if the https connection is made when using SSL and create https url
$ssl_mode = false;
if($member_config->enable_ssl == 'Y')
{