1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-16 01:54:28 +02:00

Slim Framework integration #118 #117

- turn off shortcodes for now
This commit is contained in:
Awilum
2019-06-06 00:43:47 +03:00
parent 862fafefb5
commit 31b201ee67

View File

@@ -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;