aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2012-12-24 19:30:00 -0800
committerThomas Willingham <founder@kakste.com>2012-12-24 19:30:00 -0800
commit2f3a079a7d151d69df89f5d0f611a0cfad29893a (patch)
treecb822d3db76375c0617eb38a40b29f85d084d018
parent0dd5dbe4dc120fadad94dd80e8d2690b64e07f00 (diff)
parent81168a545af291b020ad0eedc257d81ce3712e03 (diff)
downloadvolse-hubzilla-2f3a079a7d151d69df89f5d0f611a0cfad29893a.tar.gz
volse-hubzilla-2f3a079a7d151d69df89f5d0f611a0cfad29893a.tar.bz2
volse-hubzilla-2f3a079a7d151d69df89f5d0f611a0cfad29893a.zip
Merge pull request #6 from oohlaf/theme
Forgot dir separator
-rw-r--r--view/theme/fancyred/php/config.php2
-rw-r--r--view/theme/redbasic/php/config.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/view/theme/fancyred/php/config.php b/view/theme/fancyred/php/config.php
index 2dc3980b7..48035f507 100644
--- a/view/theme/fancyred/php/config.php
+++ b/view/theme/fancyred/php/config.php
@@ -65,7 +65,7 @@ function fancyred_form(&$a, $font_size, $line_height, $colour) {
'dark' => 'dark',
);
- $t = file_get_contents( dirname(__file__). "../tpl/theme_settings.tpl" );
+ $t = file_get_contents( dirname(__file__). "/../tpl/theme_settings.tpl" );
$o .= replace_macros($t, array(
'$submit' => t('Submit'),
'$baseurl' => $a->get_baseurl(),
diff --git a/view/theme/redbasic/php/config.php b/view/theme/redbasic/php/config.php
index fe69440c4..1ca9cc5ed 100644
--- a/view/theme/redbasic/php/config.php
+++ b/view/theme/redbasic/php/config.php
@@ -65,7 +65,7 @@ function redbasic_form(&$a, $font_size, $line_height, $colour) {
'dark' => 'dark',
);
- $t = file_get_contents( dirname(__file__). "../tpl/theme_settings.tpl" );
+ $t = file_get_contents( dirname(__file__). "/../tpl/theme_settings.tpl" );
$o .= replace_macros($t, array(
'$submit' => t('Submit'),
'$baseurl' => $a->get_baseurl(),