diff options
author | nashe <thomas@chauchefoin.fr> | 2018-04-29 23:29:12 +0200 |
---|---|---|
committer | nashe <thomas@chauchefoin.fr> | 2018-04-29 23:29:12 +0200 |
commit | 1190ec50eaff97125861d80a051ad90499c4841b (patch) | |
tree | 94964c66d68d8f1c53c3fcb18c6c1093490668e3 | |
parent | ba9fcc6755171cf1af593f52d630398346b70d0f (diff) | |
download | planet-1190ec50eaff97125861d80a051ad90499c4841b.tar planet-1190ec50eaff97125861d80a051ad90499c4841b.tar.gz planet-1190ec50eaff97125861d80a051ad90499c4841b.tar.bz2 planet-1190ec50eaff97125861d80a051ad90499c4841b.tar.xz planet-1190ec50eaff97125861d80a051ad90499c4841b.zip |
Fix views_path()
-rw-r--r-- | app/helpers.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers.php b/app/helpers.php index 01d0086..e943252 100644 --- a/app/helpers.php +++ b/app/helpers.php @@ -42,7 +42,7 @@ function custom_path($file = '') */ function views_path($file = '') { - return custom_path('views/install.tpl.php'); + return custom_path('views/' . $file); } /** |