We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45fb5ca commit 270e5c3Copy full SHA for 270e5c3
server/lib/classes/tpl_ini.inc.php
@@ -48,12 +48,14 @@ function vlibTemplate () {
48
global $conf;
49
50
$tpl_dir = $conf["rootpath"]."/conf";
51
+ $include_paths = array($conf["rootpath"].'/conf-custom');
52
53
return array(
54
55
'TEMPLATE_DIR' => $tpl_dir, // Default directory for your template files (full path)
56
// leave the '/' or '\' off the end of the directory.
-
57
+ 'INCLUDE_PATHS' => $include_paths, // The include path is always searched first for a template file before the template_dir is checked
58
+
59
'MAX_INCLUDES' => 10, // Drill depth for tmpl_include's
60
61
'GLOBAL_VARS' => 1, // if set to 1, any variables not found in a
0 commit comments