Passed
Push — main ( 17b057...29100e )
by Marc
10:38
created
system/core/constants.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@
 block discarded – undo
21 21
 \define('EMPTY_VALUE', '');
22 22
 
23 23
 // Section constants
24
-\define ('CATEGORY_SECTION', 'category');
25
-\define ('TAG_SECTION', 'tag');
26
-\define ('PAGE_SECTION', 'page');
27
-\define ('POST_SECTION', 'post');
24
+\define('CATEGORY_SECTION', 'category');
25
+\define('TAG_SECTION', 'tag');
26
+\define('PAGE_SECTION', 'page');
27
+\define('POST_SECTION', 'post');
28 28
 
29 29
 // Landing Page constants for posts and homepage
30 30
 \define('HOME_INDEX_KEY', '/');
Please login to merge, or discard this patch.
system/core/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@
 block discarded – undo
141 141
         $themeName = get_config()->getString(Config::KEY_THEME_NAME);
142 142
         $engineName = get_config()->getString(Config::KEY_TPL_ENGINE);
143 143
 
144
-        switch($engineName) {
144
+        switch ($engineName) {
145 145
             case 'twig':
146 146
                 $engine = build_twig_template_engine($themeName);
147 147
                 break;
Please login to merge, or discard this patch.