Files
smarty/libs/bootstrap.php

17 lines
417 B
PHP
Raw Normal View History

<?php
/**
* This file is part of the Smarty package.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Load and register Smarty Autoloader
*/
if (!class_exists('Smarty_Autoloader')) {
2018-06-12 09:58:15 +02:00
include dirname(__FILE__) . '/Autoloader.php';
}
2017-08-09 12:22:37 +02:00
Smarty_Autoloader::register(true);