aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/libs/bootstrap.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/smarty/smarty/libs/bootstrap.php')
-rw-r--r--vendor/smarty/smarty/libs/bootstrap.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/smarty/smarty/libs/bootstrap.php b/vendor/smarty/smarty/libs/bootstrap.php
new file mode 100644
index 000000000..32096087f
--- /dev/null
+++ b/vendor/smarty/smarty/libs/bootstrap.php
@@ -0,0 +1,17 @@
+<?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')) {
+ require __DIR__ . '/Autoloader.php';
+}
+Smarty_Autoloader::register();