Skip to content
Snippets Groups Projects
Commit 6e32623a authored by Tim Steiner's avatar Tim Steiner
Browse files

[gh-442] Prevent unl_wdn theme from clobbering the include_path

parent 83550041
No related branches found
No related tags found
No related merge requests found
......@@ -195,7 +195,7 @@ function unl_wdn_process_page(&$vars) {
function unl_wdn_get_instance() {
static $instance;
if (!$instance) {
set_include_path(dirname(__FILE__) . '/lib/php');
set_include_path(dirname(__FILE__) . '/lib/php' . PATH_SEPARATOR . get_include_path());
require_once "UNL/Templates.php";
require_once "UNL/Templates/CachingService/Null.php";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment