Passed
Push — 1.0.0-dev ( bb6d0b...e3bc99 )
by nguereza
03:11
created
core/classes/database/DatabaseCache.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@
 block discarded – undo
208 208
             //If is the SELECT query
209 209
             $this->isSelectQuery = stristr($this->query, 'SELECT') !== false;
210 210
 
211
-             //if can use cache feature for this query
211
+                //if can use cache feature for this query
212 212
             $this->dbCacheStatus = get_config('cache_enable', false) && $this->cacheTtl > 0;
213 213
         }
214 214
         
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
         public function getCacheContent() {
159 159
             //set some attributes values
160 160
             $this->setPropertiesValues();
161
-            if(! $this->isSelectQuery || ! $this->dbCacheStatus){
161
+            if (!$this->isSelectQuery || !$this->dbCacheStatus) {
162 162
                 $this->logger->info('The cache is not enabled for this query or is not a SELECT query'); 
163 163
                 return null;
164 164
             }
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
         public function saveCacheContent($result) {
180 180
             //set some attributes values
181 181
             $this->setPropertiesValues();
182
-            if(! $this->isSelectQuery || ! $this->dbCacheStatus){
182
+            if (!$this->isSelectQuery || !$this->dbCacheStatus) {
183 183
                 return null;
184 184
             }
185 185
             $this->setCacheFromSuperInstanceIfNull();
Please login to merge, or discard this patch.
core/libraries/FormValidation.php 2 patches
Indentation   +50 added lines, -50 removed lines patch added patch discarded remove patch
@@ -133,11 +133,11 @@  discard block
 block discarded – undo
133 133
             }
134 134
         }
135 135
 
136
-         /**
137
-         * Reset the form validation instance
138
-         *
139
-         * @return object the current instance
140
-         */
136
+            /**
137
+             * Reset the form validation instance
138
+             *
139
+             * @return object the current instance
140
+             */
141 141
         public function reset() {
142 142
             $this->rules        = array();
143 143
             $this->labels       = array();
@@ -160,11 +160,11 @@  discard block
 block discarded – undo
160 160
             return $this;
161 161
         }
162 162
 
163
-         /**
164
-         * Return the validation data
165
-         * 
166
-         * @return array the validation data
167
-         */
163
+            /**
164
+             * Return the validation data
165
+             * 
166
+             * @return array the validation data
167
+             */
168 168
         public function getData() {
169 169
             return $this->data;
170 170
         }
@@ -213,11 +213,11 @@  discard block
 block discarded – undo
213 213
             return $this->rules;
214 214
         }
215 215
 
216
-         /**
217
-         * Return the list of the validations rules for the given field
218
-         * 
219
-         * @return array
220
-         */
216
+            /**
217
+             * Return the list of the validations rules for the given field
218
+             * 
219
+             * @return array
220
+             */
221 221
         public function getFieldRules($field) {
222 222
             $rules = array();
223 223
             if (array_key_exists($field, $this->rules)) {
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
          * @return string|null
234 234
          */
235 235
         public function getFieldValue($field) {
236
-             $value = null;
236
+                $value = null;
237 237
             if (array_key_exists($field, $this->data)) {
238 238
                 $value = $this->data[$field];
239 239
             }
@@ -255,15 +255,15 @@  discard block
 block discarded – undo
255 255
         }
256 256
             
257 257
         
258
-       /**
259
-        * Return the list of validation errors
260
-        * 
261
-        * @return array the errors list. 
262
-        * Format:
263
-        *  [field1] => 'error message 1', 
264
-        *  [field2] => 'error message 2' 
265
-        */
266
-       public function getErrors() {
258
+        /**
259
+         * Return the list of validation errors
260
+         * 
261
+         * @return array the errors list. 
262
+         * Format:
263
+         *  [field1] => 'error message 1', 
264
+         *  [field2] => 'error message 2' 
265
+         */
266
+        public function getErrors() {
267 267
             return $this->errors;
268 268
         }
269 269
 
@@ -346,11 +346,11 @@  discard block
 block discarded – undo
346 346
             return $this;
347 347
         }
348 348
 
349
-         /**
350
-         * Set the database instance using get_instance() if is null
351
-         *
352
-         * @return object the current instance
353
-         */
349
+            /**
350
+             * Set the database instance using get_instance() if is null
351
+             *
352
+             * @return object the current instance
353
+             */
354 354
         protected function setDatabaseFromSuperInstanceIfNotSet() {
355 355
             if (!is_object($this->database)) {
356 356
                 $this->database = get_instance()->database;
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
          * @param string|null $field2     the second field used in some validation rule like "matches", "not_equal"
388 388
          *
389 389
          */
390
-         protected function setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue = null, $field2 = null) {
390
+            protected function setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue = null, $field2 = null) {
391 391
             //if the field is not required and his value is not set don't set error
392 392
             //but in case the field have value validate it
393 393
             if (!$this->fieldIsRequired($field) && strlen($value) <= 0) {
@@ -413,9 +413,9 @@  discard block
 block discarded – undo
413 413
          * @return string       the name of the validation method
414 414
          */
415 415
         protected function getRuleValidationMethod($rule) {
416
-             $parts = explode('_', $rule);
417
-             $parts = array_map('ucfirst', $parts);
418
-             return 'checkRule' . implode('', $parts);
416
+                $parts = explode('_', $rule);
417
+                $parts = array_map('ucfirst', $parts);
418
+                return 'checkRule' . implode('', $parts);
419 419
         }
420 420
         
421 421
         /**
@@ -426,7 +426,7 @@  discard block
 block discarded – undo
426 426
         protected function filterValidationData() {
427 427
             foreach ($this->data as $key => $value ) {
428 428
                 if (is_array($value)) {
429
-                   $this->data[$key] = array_map('trim', $value);
429
+                    $this->data[$key] = array_map('trim', $value);
430 430
                 } else {
431 431
                     $this->data[$key] = trim($value);
432 432
                 }
@@ -473,7 +473,7 @@  discard block
 block discarded – undo
473 473
                 $template['field2}']  = $field2;
474 474
                 $template['{value2}'] = $this->getFieldValue($field2);
475 475
                 $template['{label2}'] = $this->getFieldLabel($field2);
476
-             }     
476
+                }     
477 477
             $message = $this->messages[$rule];
478 478
             //Check for custom message
479 479
             if (isset($this->customErrors[$field][$rule])) {
@@ -504,7 +504,7 @@  discard block
 block discarded – undo
504 504
                 //Get the name of the method to validate this rule
505 505
                 $method = $this->getRuleValidationMethod($realRuleName);
506 506
                 if (method_exists($this, $method)) {
507
-                       call_user_func_array(array($this, $method), array($field, $realRuleName, $paramValue));
507
+                        call_user_func_array(array($this, $method), array($field, $realRuleName, $paramValue));
508 508
                 } else {
509 509
                     $this->forceError = true;
510 510
                     show_error('Invalid validaton rule "' . $realRuleName . '"');
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
          * @param  string|null  $paramValue  the rule parameter
598 598
          */ 
599 599
         protected function checkRuleMinLength($field, $rule, $paramValue) {
600
-           $value = $this->getFieldValue($field);    
600
+            $value = $this->getFieldValue($field);    
601 601
             if (strlen($value) < $paramValue) {
602 602
                 $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
603 603
             }
@@ -611,7 +611,7 @@  discard block
 block discarded – undo
611 611
          * @param  string|null  $paramValue  the rule parameter
612 612
          */
613 613
         protected function checkRuleMaxLength($field, $rule, $paramValue) {
614
-           $value = $this->getFieldValue($field);    
614
+            $value = $this->getFieldValue($field);    
615 615
             if (strlen($value) > $paramValue) {
616 616
                 $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
617 617
             }
@@ -625,7 +625,7 @@  discard block
 block discarded – undo
625 625
          * @param  string|null  $paramValue  the rule parameter
626 626
          */
627 627
         protected function checkRuleExactLength($field, $rule, $paramValue) {
628
-           $value = $this->getFieldValue($field);    
628
+            $value = $this->getFieldValue($field);    
629 629
             if (strlen($value) != $paramValue) {
630 630
                 $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
631 631
             }
@@ -732,7 +732,7 @@  discard block
 block discarded – undo
732 732
         protected function checkRuleNumeric($field, $rule, $paramValue) {
733 733
             $value = $this->getFieldValue($field);    
734 734
             if (!is_numeric($value)) {
735
-               $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
735
+                $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
736 736
             }
737 737
         }
738 738
 
@@ -746,7 +746,7 @@  discard block
 block discarded – undo
746 746
         protected function checkRuleInteger($field, $rule, $paramValue) {
747 747
             $value = $this->getFieldValue($field);    
748 748
             if (filter_var($value, FILTER_VALIDATE_INT) === false) {
749
-               $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
749
+                $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
750 750
             }
751 751
         }
752 752
 
@@ -760,7 +760,7 @@  discard block
 block discarded – undo
760 760
         protected function checkRuleIntegerNatural($field, $rule, $paramValue) {
761 761
             $value = $this->getFieldValue($field);    
762 762
             if (filter_var($value, FILTER_VALIDATE_INT) === false || $value < 0) {
763
-               $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
763
+                $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
764 764
             }
765 765
         }
766 766
 
@@ -847,7 +847,7 @@  discard block
 block discarded – undo
847 847
             $format = $paramValue;
848 848
             $dateValue = date_create_from_format($format, $value);    
849 849
             if ($dateValue === false || $dateValue->format($format) !== $value) {
850
-               $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
850
+                $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
851 851
             }
852 852
         }
853 853
 
@@ -891,7 +891,7 @@  discard block
 block discarded – undo
891 891
         protected function checkRuleUrl($field, $rule, $paramValue) {
892 892
             $value = $this->getFieldValue($field);    
893 893
             if (filter_var($value, FILTER_VALIDATE_URL) === false) {
894
-               $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
894
+                $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
895 895
             }
896 896
         }
897 897
 
@@ -906,7 +906,7 @@  discard block
 block discarded – undo
906 906
         protected function checkRuleIp($field, $rule, $paramValue) {
907 907
             $value = $this->getFieldValue($field);    
908 908
             if (filter_var($value, FILTER_VALIDATE_IP) === false) {
909
-               $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
909
+                $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
910 910
             }
911 911
         }
912 912
 
@@ -951,7 +951,7 @@  discard block
 block discarded – undo
951 951
             $value = $this->getFieldValue($field);    
952 952
             list($table, $column) = explode('.', $paramValue);
953 953
             $this->database->getQueryBuilder()->from($table)
954
-                                              ->where($column, $value);
954
+                                                ->where($column, $value);
955 955
             $this->database->get();
956 956
             if ($this->database->numRows() > 0) {
957 957
                 $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
@@ -973,8 +973,8 @@  discard block
 block discarded – undo
973 973
             list($table, $column) = explode('.', $data[0]);
974 974
             list($columnKey, $valueKey) = explode('=', $data[1]);
975 975
             $this->database->getQueryBuilder()->from($table)
976
-                                              ->where($column, $value)
977
-                                              ->where($columnKey, '!=', trim($valueKey));
976
+                                                ->where($column, $value)
977
+                                                ->where($columnKey, '!=', trim($valueKey));
978 978
             $this->database->get();
979 979
             if ($this->database->numRows() > 0) {
980 980
                 $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
@@ -994,7 +994,7 @@  discard block
 block discarded – undo
994 994
             $value = $this->getFieldValue($field);    
995 995
             list($table, $column) = explode('.', $paramValue);
996 996
             $this->database->getQueryBuilder()->from($table)
997
-                                              ->where($column, $value);
997
+                                                ->where($column, $value);
998 998
             $this->database->get();
999 999
             if ($this->database->numRows() <= 0) {
1000 1000
                 $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
          * @return object the current instance
425 425
          */
426 426
         protected function filterValidationData() {
427
-            foreach ($this->data as $key => $value ) {
427
+            foreach ($this->data as $key => $value) {
428 428
                 if (is_array($value)) {
429 429
                    $this->data[$key] = array_map('trim', $value);
430 430
                 } else {
@@ -1037,7 +1037,7 @@  discard block
 block discarded – undo
1037 1037
                 if (call_user_func_array($paramValue, array($value)) === false) {
1038 1038
                     $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue);
1039 1039
                 }
1040
-            } else{
1040
+            } else {
1041 1041
                 $this->forceError = true;
1042 1042
                 show_error('The callback validation function/method "' . $paramValue . '" does not exist');
1043 1043
             }
Please login to merge, or discard this patch.
core/classes/database/DatabaseQueryRunner.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
             if ((double) $responseTime >= 1.000000) {
122 122
                 $this->logger->warning(
123 123
                                         'High response time while processing database query [' . $this->query . '].' 
124
-                                        . 'The response time is [' .$responseTime . '] sec.'
124
+                                        . 'The response time is [' . $responseTime . '] sec.'
125 125
                                         );
126 126
             }
127 127
     		
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@
 block discarded – undo
30 30
     
31 31
     class DatabaseQueryRunner extends BaseClass {
32 32
 
33
-         /**
34
-         * The DatabaseConnection instance
35
-         * @var object
36
-         */
33
+            /**
34
+             * The DatabaseConnection instance
35
+             * @var object
36
+             */
37 37
         private $connection = null;
38 38
 
39 39
         /**
Please login to merge, or discard this patch.
core/classes/GlobalVar.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -234,10 +234,10 @@  discard block
 block discarded – undo
234 234
             return $this->removeVars($_ENV, $key);
235 235
         }
236 236
 
237
-         /**
238
-         * Get the value from $GLOBALS for given key. if the key is empty will return all values
239
-         * @see GlobalVar::getVars 
240
-         */
237
+            /**
238
+             * Get the value from $GLOBALS for given key. if the key is empty will return all values
239
+             * @see GlobalVar::getVars 
240
+             */
241 241
         public function globals($key = null, $xss = true) {
242 242
             return $this->getVars($GLOBALS, $key, $xss);
243 243
         }
@@ -259,16 +259,16 @@  discard block
 block discarded – undo
259 259
         }
260 260
 
261 261
         
262
-         /**
263
-         * Set the value for $_GET, $_POST, $_SERVER etc. if the key is an array will
264
-         * set the current super variable value by this.
265
-         * @param array $var the super global variable to use, can be "$_POST", "$_GET", etc.
266
-         * @param  string|array  $key the item key to be set or array if need set the current global variable 
267
-         * by this value
268
-         * @param mixed $value the value to set if $key is not an array
269
-         *
270
-         * @return object       the current instance
271
-         */
262
+            /**
263
+             * Set the value for $_GET, $_POST, $_SERVER etc. if the key is an array will
264
+             * set the current super variable value by this.
265
+             * @param array $var the super global variable to use, can be "$_POST", "$_GET", etc.
266
+             * @param  string|array  $key the item key to be set or array if need set the current global variable 
267
+             * by this value
268
+             * @param mixed $value the value to set if $key is not an array
269
+             *
270
+             * @return object       the current instance
271
+             */
272 272
         protected function setVars(&$var, $key, $value = null) {
273 273
             if (is_array($key)) {
274 274
                 //set all
Please login to merge, or discard this patch.
core/classes/Request.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -207,10 +207,10 @@
 block discarded – undo
207 207
             return $this;
208 208
         }
209 209
 
210
-         /**
211
-         * Return the instance of session.
212
-         * @return object the session instance
213
-         */
210
+            /**
211
+             * Return the instance of session.
212
+             * @return object the session instance
213
+             */
214 214
         public function getSession() {
215 215
             return $this->session;
216 216
         }
Please login to merge, or discard this patch.
core/classes/Module.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
          */
62 62
         public function add($name) {
63 63
             if (in_array($name, $this->list)) {
64
-               $this->logger->info('The module [' .$name. '] already added skipping.');
64
+               $this->logger->info('The module [' . $name . '] already added skipping.');
65 65
                return $this;
66 66
             }
67 67
             $this->list[] = $name;
Please login to merge, or discard this patch.
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -58,8 +58,8 @@  discard block
 block discarded – undo
58 58
          */
59 59
         public function add($name) {
60 60
             if (in_array($name, $this->list)) {
61
-               $this->logger->info('The module [' .$name. '] already added skipping.');
62
-               return $this;
61
+                $this->logger->info('The module [' .$name. '] already added skipping.');
62
+                return $this;
63 63
             }
64 64
             $this->list[] = $name;
65 65
             return $this;
@@ -90,10 +90,10 @@  discard block
 block discarded – undo
90 90
             $this->list = array();
91 91
         }
92 92
 
93
-         /**
94
-         * Get the list of module loaded
95
-         * @return array the module list
96
-         */
93
+            /**
94
+             * Get the list of module loaded
95
+             * @return array the module list
96
+             */
97 97
         public function getModuleList() {
98 98
             return $this->list;
99 99
         }
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
             $this->logger->debug('Check if the application contains the modules ...');
233 233
             $dirList = glob(MODULE_PATH . '*', GLOB_ONLYDIR);
234 234
             if ($dirList !== false) {
235
-               $this->list = array_map('basename', $dirList);
235
+                $this->list = array_map('basename', $dirList);
236 236
             }
237 237
             if (!empty($this->list)) {
238 238
                 $this->logger->info('The application contains the module below [' . implode(', ', $this->list) . ']');
Please login to merge, or discard this patch.
core/classes/Security.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -98,10 +98,10 @@
 block discarded – undo
98 98
         }
99 99
 		
100 100
         /**
101
-        * This method is used to check the whitelist IP address access
102
-        *
103
-        * @return boolean
104
-        */
101
+         * This method is used to check the whitelist IP address access
102
+         *
103
+         * @return boolean
104
+         */
105 105
         public function checkWhiteListIpAccess() {
106 106
             $this->logger->debug('Validation of the IP address access ...');
107 107
             $this->logger->debug('Check if whitelist IP access is enabled in the configuration ...');
Please login to merge, or discard this patch.
core/classes/Response.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -369,7 +369,7 @@
 block discarded – undo
369 369
          * 
370 370
          * @return string|null          the full file path
371 371
          */
372
-        protected function getDefaultFilePathForView($file){
372
+        protected function getDefaultFilePathForView($file) {
373 373
             $searchDir = array(APPS_VIEWS_PATH, CORE_VIEWS_PATH);
374 374
             $fullFilePath = null;
375 375
             foreach ($searchDir as $dir) {
Please login to merge, or discard this patch.
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
             $moduleInfo = $this->getModuleInfoForView($view);
182 182
             $module = $moduleInfo['module'];
183 183
             $view = $moduleInfo['view'];
184
-			if ($module) {
184
+            if ($module) {
185 185
                 $moduleViewPath = get_instance()->module->findViewFullPath($view, $module);
186 186
                 if ($moduleViewPath) {
187 187
                     $path = $moduleViewPath;
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
                     $this->logger->info('Cannot find view [' . $view . '] in module [' . $module . '] using the default location');
191 191
                 }
192 192
             }
193
-			if (!$path) {
193
+            if (!$path) {
194 194
                 $path = $this->getDefaultFilePathForView($viewFile);
195 195
             }
196 196
             $this->logger->info('The view file path to be loaded is [' . $path . ']');
@@ -290,12 +290,12 @@  discard block
 block discarded – undo
290 290
             return $this->finalPageContent;
291 291
         }
292 292
 
293
-         /**
294
-         * Set the final page to be rendered
295
-         * @param string $finalPage the content of the final page
296
-         * 
297
-         * @return object
298
-         */
293
+            /**
294
+             * Set the final page to be rendered
295
+             * @param string $finalPage the content of the final page
296
+             * 
297
+             * @return object
298
+             */
299 299
         public function setFinalPageContent($finalPage) {
300 300
             $this->finalPageContent = $finalPage;
301 301
             return $this;
@@ -372,12 +372,12 @@  discard block
 block discarded – undo
372 372
         }
373 373
 
374 374
 
375
-         /**
376
-         * Return the default full file path for view
377
-         * @param  string $file    the filename
378
-         * 
379
-         * @return string|null          the full file path
380
-         */
375
+            /**
376
+             * Return the default full file path for view
377
+             * @param  string $file    the filename
378
+             * 
379
+             * @return string|null          the full file path
380
+             */
381 381
         protected function getDefaultFilePathForView($file){
382 382
             $searchDir = array(APPS_VIEWS_PATH, CORE_VIEWS_PATH);
383 383
             $fullFilePath = null;
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
                 $headerModifiedSince = $globals->server('HTTP_IF_MODIFIED_SINCE');
411 411
                 if (!empty($headerModifiedSince) && $lastModified <= strtotime($headerModifiedSince)) {
412 412
                     $this->logger->info('The cache page content is not yet expire for the '
413
-                                         . 'URL [' . $this->currentUrl . '] send 304 header to browser');
413
+                                            . 'URL [' . $this->currentUrl . '] send 304 header to browser');
414 414
                     $this->sendHeaders(304);
415 415
                     return true;
416 416
                 }
@@ -425,8 +425,8 @@  discard block
 block discarded – undo
425 425
          */
426 426
         protected function sendCachePageContentToBrowser(&$cache) {
427 427
             $this->logger->info('The cache page content is expired or the browser does '
428
-                 . 'not send the HTTP_IF_MODIFIED_SINCE header for the URL [' . $this->currentUrl . '] '
429
-                 . 'send cache headers to tell the browser');
428
+                    . 'not send the HTTP_IF_MODIFIED_SINCE header for the URL [' . $this->currentUrl . '] '
429
+                    . 'send cache headers to tell the browser');
430 430
             $this->sendHeaders(200);
431 431
             //current page cache key
432 432
             $pageCacheKey = $this->currentUrlCacheKey;
@@ -517,7 +517,7 @@  discard block
 block discarded – undo
517 517
             $obj = & get_instance();
518 518
             if (!is_object($obj)) {
519 519
                 //May be super instance not yet loaded
520
-               return array(
520
+                return array(
521 521
                         'view' => $view,
522 522
                         'module' => $module,
523 523
                         'viewFile' => $viewFile
@@ -574,18 +574,18 @@  discard block
 block discarded – undo
574 574
             }
575 575
         }
576 576
 
577
-         /**
578
-         * Set the mandory headers, like security, etc.
579
-         */
577
+            /**
578
+             * Set the mandory headers, like security, etc.
579
+             */
580 580
         protected function setRequiredHeaders() {
581 581
             $requiredHeaders = array(
582 582
                                 'X-XSS-Protection' => '1; mode=block',
583 583
                                 'X-Frame-Options'  => 'SAMEORIGIN'
584 584
                             );
585 585
             foreach ($requiredHeaders as $key => $value) {
586
-               if (!isset($this->headers[$key])) {
586
+                if (!isset($this->headers[$key])) {
587 587
                     $this->headers[$key] = $value;
588
-               } 
588
+                } 
589 589
             }
590 590
         }
591 591
     }
Please login to merge, or discard this patch.
app/views/home.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,8 +32,8 @@
 block discarded – undo
32 32
             <p>Required PHP version : <b>PHP &gt;= <?php echo TNH_MIN_PHP_VERSION; ?>, PHP &lt; <?php echo TNH_MAX_PHP_VERSION; ?></b></p>
33 33
             <p>Release date : <b><?php echo TNH_RELEASE_DATE; ?></b></p>
34 34
             <hr />
35
-            <p>Current controller: <b class = "text-muted label-danger"><?php echo APPS_CONTROLLER_PATH . 'Home.php';?></b>
36
-            <p>Current view: <b class = "text-muted label-danger"><?php echo APPS_VIEWS_PATH . 'home.php';?></b>
35
+            <p>Current controller: <b class = "text-muted label-danger"><?php echo APPS_CONTROLLER_PATH . 'Home.php'; ?></b>
36
+            <p>Current view: <b class = "text-muted label-danger"><?php echo APPS_VIEWS_PATH . 'home.php'; ?></b>
37 37
           </div>
38 38
         </div>
39 39
       </div>
Please login to merge, or discard this patch.