diff options
author | Thomas Willingham <founder@kakste.com> | 2012-12-24 18:34:07 -0800 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2012-12-24 18:34:07 -0800 |
commit | 0dd5dbe4dc120fadad94dd80e8d2690b64e07f00 (patch) | |
tree | 8de3f43fe80b80f8cf6e08492e2d5f5865403103 | |
parent | ce0d38969614fbc1c7e3d9d54d974962a1014357 (diff) | |
parent | 85371a526f5b9c15956d8da76a851ae817b10fae (diff) | |
download | volse-hubzilla-0dd5dbe4dc120fadad94dd80e8d2690b64e07f00.tar.gz volse-hubzilla-0dd5dbe4dc120fadad94dd80e8d2690b64e07f00.tar.bz2 volse-hubzilla-0dd5dbe4dc120fadad94dd80e8d2690b64e07f00.zip |
Merge pull request #5 from oohlaf/theme
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(), |