diff options
author | friendica <info@friendica.com> | 2014-02-22 14:59:16 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-22 14:59:16 -0800 |
commit | b78d423a54cdb1a1683c3aca973ad8c82c4d7caa (patch) | |
tree | a04968158485eeb03116b0b008de37362b45cf2f /view/theme/redbasic/php/style.php | |
parent | 5b4e3f46bca2def72fd2df2651eacdd853892a23 (diff) | |
parent | f0a361a7c12a1aac811137c63a5cc7907c2fd50c (diff) | |
download | volse-hubzilla-b78d423a54cdb1a1683c3aca973ad8c82c4d7caa.tar.gz volse-hubzilla-b78d423a54cdb1a1683c3aca973ad8c82c4d7caa.tar.bz2 volse-hubzilla-b78d423a54cdb1a1683c3aca973ad8c82c4d7caa.zip |
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'view/theme/redbasic/php/style.php')
-rw-r--r-- | view/theme/redbasic/php/style.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 8d5c23a03..901d06af7 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -14,6 +14,7 @@ if(! $a->install) { $nav_colour = get_pconfig($uid, "redbasic", "nav_colour"); // Load the owners pconfig + $narrow_navbar = get_pconfig($uid,'redbasic','narrow_navbar'); $banner_colour = get_pconfig($uid,'redbasic','banner_colour'); $link_colour = get_pconfig($uid, "redbasic", "link_colour"); $schema = get_pconfig($uid,'redbasic','schema'); @@ -213,3 +214,6 @@ echo str_replace(array_keys($options), array_values($options), $x); if($sloppy_photos && file_exists('view/theme/redbasic/css/sloppy_photos.css')) { echo file_get_contents('view/theme/redbasic/css/sloppy_photos.css'); } +if($narrow_navbar && file_exists('view/theme/redbasic/css/narrow_navbar.css')) { + echo file_get_contents('view/theme/redbasic/css/narrow_navbar.css'); +} |