From ad729a99c4b8db986e59d1b2241bef49a394973e Mon Sep 17 00:00:00 2001 From: Daniel Rudolf Date: Tue, 30 Apr 2019 15:34:48 +0200 Subject: [PATCH] Remove base_dir and theme_dir Twig variables These variables aren't really needed in Twig and can still be accessed using $config --- lib/Pico.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Pico.php b/lib/Pico.php index adb1e1007..3f9eefcba 100644 --- a/lib/Pico.php +++ b/lib/Pico.php @@ -2029,12 +2029,10 @@ protected function getTwigVariables() { return array( 'config' => $this->getConfig(), - 'base_dir' => rtrim($this->getRootDir(), '/'), 'base_url' => rtrim($this->getBaseUrl(), '/'), 'plugins_url' => rtrim($this->getConfig('plugins_url'), '/'), 'themes_url' => rtrim($this->getConfig('themes_url'), '/'), 'assets_url' => rtrim($this->getConfig('assets_url'), '/'), - 'theme_dir' => $this->getThemesDir() . $this->getConfig('theme'), 'theme_url' => $this->getConfig('themes_url') . $this->getConfig('theme'), 'site_title' => $this->getConfig('site_title'), 'meta' => $this->meta,