diff options
author | zottel <github@zottel.net> | 2014-02-28 08:16:56 +0100 |
---|---|---|
committer | zottel <github@zottel.net> | 2014-02-28 08:16:56 +0100 |
commit | 4bb8e294a10a11d964759026bb1e899ca3926984 (patch) | |
tree | 48fec5a7c0af5bc929f94223a7175aa9b484de69 /boot.php | |
parent | f8b3f032a95ccc9b1730a532e7b9fe185f7db910 (diff) | |
parent | 7cb295bbe627eab2546e859248eacd26da948ed9 (diff) | |
download | volse-hubzilla-4bb8e294a10a11d964759026bb1e899ca3926984.tar.gz volse-hubzilla-4bb8e294a10a11d964759026bb1e899ca3926984.tar.bz2 volse-hubzilla-4bb8e294a10a11d964759026bb1e899ca3926984.zip |
Merge remote-tracking branch 'upstream/master'
Conflicts:
mod/help.php
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1678,10 +1678,11 @@ function current_theme(){ function current_theme_url($installing = false) { global $a; $t = current_theme(); - $uid = ''; - $uid = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : ''); + $opts = ''; + $opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : ''); + $opts .= ((x($a->layout,'schema')) ? '&schema=' . $a->layout['schema'] : ''); if(file_exists('view/theme/' . $t . '/php/style.php')) - return('view/theme/' . $t . '/php/style.pcss' . $uid); + return('view/theme/' . $t . '/php/style.pcss' . $opts); return('view/theme/' . $t . '/css/style.css'); } |