Compare commits
2 Commits
91cabf56e7
...
3e72568141
Author | SHA1 | Date |
---|---|---|
|
3e72568141 | |
|
1993a7e2de |
|
@ -138,11 +138,14 @@ class Theme
|
|||
|
||||
// Update session
|
||||
if (Session::isValidSession()) {
|
||||
$_SESSION['user_theme'] = $themeName;
|
||||
$_SESSION['theme'] = $themeName;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Clear the current theme cache
|
||||
self::$currentTheme = null;
|
||||
|
||||
// Update config file
|
||||
$configFile = __DIR__ . '/../config/theme.php';
|
||||
if (file_exists($configFile) && is_writable($configFile)) {
|
||||
|
@ -162,8 +165,8 @@ class Theme
|
|||
self::$currentTheme = $themeName;
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<span class="text-muted">
|
||||
© <?= date('Y') ?> <?= htmlspecialchars($config['site_name'] ?? '') ?> v<?= htmlspecialchars($config['version'] ?? '') ?>
|
||||
© 2024-<?= date('Y') ?> <?= htmlspecialchars($config['site_name'] ?? '') ?> v<?= htmlspecialchars($config['version'] ?? '') ?>
|
||||
</span>
|
||||
</div>
|
||||
<div class="col-md-6 text-md-end">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<span class="text-muted">
|
||||
© <?= date('Y') ?> <?= htmlspecialchars($config['site_name'] ?? '') ?> v<?= htmlspecialchars($config['version'] ?? '') ?>
|
||||
© 2024-<?= date('Y') ?> <?= htmlspecialchars($config['site_name'] ?? '') ?> v<?= htmlspecialchars($config['version'] ?? '') ?>
|
||||
</span>
|
||||
</div>
|
||||
<div class="col-md-6 text-md-end">
|
||||
|
|
Loading…
Reference in New Issue