diff options
author | Olaf Conradi <olaf@conradi.org> | 2012-12-25 03:14:52 +0100 |
---|---|---|
committer | Olaf Conradi <olaf@conradi.org> | 2012-12-25 03:14:52 +0100 |
commit | 85371a526f5b9c15956d8da76a851ae817b10fae (patch) | |
tree | 8de3f43fe80b80f8cf6e08492e2d5f5865403103 | |
parent | ce0d38969614fbc1c7e3d9d54d974962a1014357 (diff) | |
download | volse-hubzilla-85371a526f5b9c15956d8da76a851ae817b10fae.tar.gz volse-hubzilla-85371a526f5b9c15956d8da76a851ae817b10fae.tar.bz2 volse-hubzilla-85371a526f5b9c15956d8da76a851ae817b10fae.zip |
Fix theme config paths
-rw-r--r-- | view/theme/fancyred/php/config.php | 2 | ||||
-rw-r--r-- | view/theme/redbasic/php/config.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/view/theme/fancyred/php/config.php b/view/theme/fancyred/php/config.php index 03844c3b6..2dc3980b7 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__). "/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 dd82f8ec3..fe69440c4 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__). "/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(), |