diff options
author | friendica <info@friendica.com> | 2012-08-08 18:13:44 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-08-08 18:13:44 -0700 |
commit | 5c4246e6033fb1130aa0393878c36d5f3bbd4694 (patch) | |
tree | 4b0b3a7c7fe941cddbdb359d4a7e3384e6b33dd6 /mod/view.php | |
parent | c28da5673731acbedecb4209c38b72046db597e1 (diff) | |
parent | 29b8b8f82b72f646ea4c55d66766bd0e0c950657 (diff) | |
download | volse-hubzilla-5c4246e6033fb1130aa0393878c36d5f3bbd4694.tar.gz volse-hubzilla-5c4246e6033fb1130aa0393878c36d5f3bbd4694.tar.bz2 volse-hubzilla-5c4246e6033fb1130aa0393878c36d5f3bbd4694.zip |
Merge pull request #2 from beardy-unixer/master
More theme refactoring
Diffstat (limited to 'mod/view.php')
-rw-r--r-- | mod/view.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/view.php b/mod/view.php index 15b3733b3..965e18067 100644 --- a/mod/view.php +++ b/mod/view.php @@ -9,8 +9,8 @@ function view_init($a){ if ($a->argc == 4){ $theme = $a->argv[2]; $THEMEPATH = "view/theme/$theme"; - if(file_exists("view/theme/$theme/style.php")) - require_once("view/theme/$theme/style.php"); + if(file_exists("view/theme/$theme/php/style.php")) + require_once("view/theme/$theme/php/style.php"); } killme(); |