You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bootstrap.php 416B

1234567891011121314151617
  1. <?php
  2. /*
  3. * This file is part of the Smarty package.
  4. *
  5. * (c) Sebastian Bergmann <sebastian@phpunit.de>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. /*
  11. * Load and register Smarty Autoloader
  12. */
  13. if (!class_exists('Smarty_Autoloader')) {
  14. require dirname(__FILE__) . '/Autoloader.php';
  15. }
  16. Smarty_Autoloader::register(true);