mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
'system','theme' config to set default site theme
This commit is contained in:
parent
7b6385df94
commit
efc4e76c7a
1 changed files with 2 additions and 2 deletions
|
@ -212,13 +212,13 @@ if($a->module != 'install')
|
|||
* Make sure the desired theme exists, though if the default theme doesn't exist we're stuffed.
|
||||
*
|
||||
*/
|
||||
|
||||
$default_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : 'default');
|
||||
if((x($_SESSION,'theme')) && (! file_exists('view/theme/' . $_SESSION['theme'] . '/style.css')))
|
||||
unset($_SESSION['theme']);
|
||||
|
||||
$a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array(
|
||||
'$stylesheet' => $a->get_baseurl() . '/view/theme/'
|
||||
. ((x($_SESSION,'theme')) ? $_SESSION['theme'] : 'default')
|
||||
. ((x($_SESSION,'theme')) ? $_SESSION['theme'] : $default_theme)
|
||||
. '/style.css'
|
||||
));
|
||||
|
||||
|
|
Loading…
Reference in a new issue