Fix Twig loading on PHP 5.6

This commit is contained in:
Victor LABORIE 2019-03-28 14:13:48 +01:00
parent b4b23dfb09
commit bbd55a2e67
2 changed files with 12 additions and 2 deletions

View File

@ -1,6 +1,11 @@
<?php
require_once 'Twig/autoload.php';
if (file_exists(stream_resolve_include_path('Twig/autoload.php'))) {
require_once 'Twig/autoload.php';
} elseif (stream_resolve_include_path(file_exists('Twig/Autoloader.php'))) {
require_once 'Twig/Autoloader.php';
Twig_Autoloader::register();
}
class MailNotify {
private static $twig, $adminmail;

View File

@ -1,6 +1,11 @@
<?php
require_once 'Twig/autoload.php';
if (file_exists(stream_resolve_include_path('Twig/autoload.php'))) {
require_once 'Twig/autoload.php';
} elseif (stream_resolve_include_path(file_exists('Twig/Autoloader.php'))) {
require_once 'Twig/Autoloader.php';
Twig_Autoloader::register();
}
class PageController {
public static $alerts=array();