diff --git a/Changelog b/Changelog index 233d8b2f9..83b5c2654 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2015-10-16 DariusIII + Fix: Path to smarty dir Fix: Instantiation issues in NameFixer.php 2015-10-16 DariusIII Fix: Missing use statements. diff --git a/newznab/controllers/BasePage.php b/newznab/controllers/BasePage.php index 6c22db071..8b1861324 100644 --- a/newznab/controllers/BasePage.php +++ b/newznab/controllers/BasePage.php @@ -5,7 +5,7 @@ use newznab\db\Settings; use Smarty; use Smarty_Autoloader; -require_once SMARTY_DIR . DS . 'Autoloader.php'; +require_once SMARTY_DIR . 'Autoloader.php'; Smarty_Autoloader::register(); @@ -329,4 +329,4 @@ class BasePage { $this->smarty->display($this->page_template); } -} \ No newline at end of file +}