Skip to content

Commit e2a3536

Browse files
authored
Merge pull request #2575 from MPOS/development
UPDATE : Development to Master
2 parents f7f0437 + 86ad302 commit e2a3536

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/smarty_globals.inc.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@
225225
$_SESSION['POPUP'][] = array('CONTENT' => 'You are using an old Theme that will not be maintained in the future.', 'TYPE' => 'alert alert-warning');
226226

227227
// Check we can load the theme at all
228-
if ( !in_array($setting->getValue('website_theme'), $template->getThemes()))
228+
if ( !in_array($setting->getValue('website_theme', 'bootstrap'), $template->getThemes()))
229229
die('Unable to find your selected theme `' . $setting->getValue('website_theme') . '` in the list of available themes. Please reset your `website_theme` setting in your database.');
230230

231231
// So we can display additional info

include/version.inc.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
$defflip = (!cfip()) ? exit(header('HTTP/1.1 401 Unauthorized')) : 1;
33

4-
define('MPOS_VERSION', '1.0.6');
4+
define('MPOS_VERSION', '1.0.7');
55
define('DB_VERSION', '1.0.2');
66
define('CONFIG_VERSION', '1.0.1');
77
define('HASH_VERSION', 1);

0 commit comments

Comments
 (0)