From 3fa8f8a3e692155aa216944d99646cfea1f823cf Mon Sep 17 00:00:00 2001 From: Brett Bieber <brett.bieber@gmail.com> Date: Fri, 7 Sep 2012 10:15:57 -0500 Subject: [PATCH] Remove require once statment and rely on autoloader --- src/UNL/Catalog.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/UNL/Catalog.php b/src/UNL/Catalog.php index 1885ac4..4c18d26 100644 --- a/src/UNL/Catalog.php +++ b/src/UNL/Catalog.php @@ -484,9 +484,6 @@ class UNL_Catalog */ private function initializeTemplate() { - if (!class_exists('UNL_Templates')) { - require_once 'UNL/Templates.php'; - } UNL_Templates::setCachingService(new UNL_Templates_CachingService_Null()); UNL_Templates::$options['version'] = 3.1; -- GitLab