1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-25 11:01:48 +02:00

Merge pull request #4990 from rubencm/ticket/15377

[ticket/15377] Fix INCLUDECSS and INCLUDEJS
This commit is contained in:
Máté Bartus
2017-10-09 21:12:08 +02:00
committed by GitHub
2 changed files with 19 additions and 0 deletions

View File

@@ -22,6 +22,16 @@ class loader extends \Twig_Loader_Filesystem
{
protected $safe_directories = array();
/**
* Constructor
*
* @param string|array $paths
*/
public function __construct($paths = array())
{
parent::__construct($paths, __DIR__);
}
/**
* Set safe directories
*