From 31b201ee67a02b30432192b1a2d4489ae230d56e Mon Sep 17 00:00:00 2001 From: Awilum Date: Thu, 6 Jun 2019 00:43:47 +0300 Subject: [PATCH] Slim Framework integration #118 #117 - turn off shortcodes for now --- flextype/Entries.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flextype/Entries.php b/flextype/Entries.php index 4a093f51..8684db08 100755 --- a/flextype/Entries.php +++ b/flextype/Entries.php @@ -52,7 +52,7 @@ class Entries // Apply Shortcodes for each entry fields foreach ($entry_decoded as $key => $_entry_decoded) { - $entry_decoded[$key] = $this->flextype['shortcodes']->process($_entry_decoded); + $entry_decoded[$key] = $_entry_decoded;//$this->flextype['shortcodes']->process($_entry_decoded); } return $entry_decoded; @@ -72,7 +72,7 @@ class Entries // Apply Shortcodes for each entry fields foreach ($entry_decoded as $key => $_entry_decoded) { - $entry_decoded[$key] = $this->flextype['shortcodes']->process($_entry_decoded); + $entry_decoded[$key] = $_entry_decoded;//$this->flextype['shortcodes']->process($_entry_decoded); } return $entry_decoded;