1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-17 18:36:39 +02:00

refactor(core): fix code standard for Flextype bootstrap #347

This commit is contained in:
Awilum
2020-02-19 23:35:11 +03:00
parent 85a88b9225
commit b562c8a8d7

View File

@@ -169,7 +169,7 @@ date_default_timezone_set($flextype['registry']->get('flextype.timezone'));
*/
$shortcodes_extensions = $flextype['registry']->get('flextype.shortcodes.extensions');
foreach($shortcodes_extensions as $shortcodes_extension) {
foreach ($shortcodes_extensions as $shortcodes_extension) {
$shortcodes_extension_file_path = ROOT_DIR . '/flextype/shortcodes/' . $shortcodes_extension . 'ShortcodeExtension.php';
if (file_exists($shortcodes_extension_file_path)) {
include_once $shortcodes_extension_file_path;