aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/redbasic/php/style.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-02-01 21:03:46 -0800
committerfriendica <info@friendica.com>2014-02-01 21:03:46 -0800
commit34850289ffd35efcc96c267e9d8b0207db83e575 (patch)
tree9d454ca490fc6952964322d81b36aaf8e2b137aa /view/theme/redbasic/php/style.php
parent61cc4de2255b344e9f607ae9fa545f45d7423b56 (diff)
parenta9ceeff988235d2ae16c2f9683a3fe210e956645 (diff)
downloadvolse-hubzilla-34850289ffd35efcc96c267e9d8b0207db83e575.tar.gz
volse-hubzilla-34850289ffd35efcc96c267e9d8b0207db83e575.tar.bz2
volse-hubzilla-34850289ffd35efcc96c267e9d8b0207db83e575.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.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php
index 9956ccd31..fcb762891 100644
--- a/view/theme/redbasic/php/style.php
+++ b/view/theme/redbasic/php/style.php
@@ -13,6 +13,7 @@
// Load the owners pconfig
$banner_colour = get_pconfig($uid,'redbasic','banner_colour');
+ $link_colour = get_pconfig($uid, "redbasic", "link_colour");
$schema = get_pconfig($uid,'redbasic','schema');
$bgcolour = get_pconfig($uid, "redbasic", "background_colour");
$background_image = get_pconfig($uid, "redbasic", "background_image");
@@ -63,6 +64,8 @@
$nav_bg_3 = "#f00";
$nav_bg_4 = "#b00";
}
+ if (! $link_colour)
+ $link_colour = "#7b0000";
if (! $banner_colour)
$banner_colour = "fff";
if (! $bgcolour)
@@ -141,6 +144,7 @@ $options = array (
'$nav_bg_2' => $nav_bg_2,
'$nav_bg_3' => $nav_bg_3,
'$nav_bg_4' => $nav_bg_4,
+'$link_colour' => $link_colour,
'$banner_colour' => $banner_colour,
'$search_background' => $search_background,
'$bgcolour' => $bgcolour,