@@ -200,16 +200,14 @@ discard block |
||
| 200 | 200 | if (empty($library)) |
| 201 | 201 | { |
| 202 | 202 | return $this; |
| 203 | - } |
|
| 204 | - elseif (is_array($library)) |
|
| 203 | + } elseif (is_array($library)) |
|
| 205 | 204 | { |
| 206 | 205 | foreach ($library as $key => $value) |
| 207 | 206 | { |
| 208 | 207 | if (is_int($key)) |
| 209 | 208 | { |
| 210 | 209 | $this->library($value, $params); |
| 211 | - } |
|
| 212 | - else |
|
| 210 | + } else |
|
| 213 | 211 | { |
| 214 | 212 | $this->library($key, $params, $value); |
| 215 | 213 | } |
@@ -246,8 +244,7 @@ discard block |
||
| 246 | 244 | if (empty($model)) |
| 247 | 245 | { |
| 248 | 246 | return $this; |
| 249 | - } |
|
| 250 | - elseif (is_array($model)) |
|
| 247 | + } elseif (is_array($model)) |
|
| 251 | 248 | { |
| 252 | 249 | foreach ($model as $key => $value) |
| 253 | 250 | { |
@@ -315,8 +312,7 @@ discard block |
||
| 315 | 312 | } |
| 316 | 313 | |
| 317 | 314 | log_message('info', 'CI_Model class loaded'); |
| 318 | - } |
|
| 319 | - elseif ( ! class_exists('CI_Model', FALSE)) |
|
| 315 | + } elseif ( ! class_exists('CI_Model', FALSE)) |
|
| 320 | 316 | { |
| 321 | 317 | require_once(BASEPATH.'core'.DIRECTORY_SEPARATOR.'Model.php'); |
| 322 | 318 | } |
@@ -477,8 +473,7 @@ discard block |
||
| 477 | 473 | require_once($driver_path); |
| 478 | 474 | $class = 'CI_DB_'.$db->dbdriver.'_'.$db->subdriver.'_forge'; |
| 479 | 475 | } |
| 480 | - } |
|
| 481 | - else |
|
| 476 | + } else |
|
| 482 | 477 | { |
| 483 | 478 | $class = 'CI_DB_'.$db->dbdriver.'_forge'; |
| 484 | 479 | } |
@@ -765,16 +760,14 @@ discard block |
||
| 765 | 760 | if (is_int($key)) |
| 766 | 761 | { |
| 767 | 762 | $this->driver($value, $params); |
| 768 | - } |
|
| 769 | - else |
|
| 763 | + } else |
|
| 770 | 764 | { |
| 771 | 765 | $this->driver($key, $params, $value); |
| 772 | 766 | } |
| 773 | 767 | } |
| 774 | 768 | |
| 775 | 769 | return $this; |
| 776 | - } |
|
| 777 | - elseif (empty($library)) |
|
| 770 | + } elseif (empty($library)) |
|
| 778 | 771 | { |
| 779 | 772 | return FALSE; |
| 780 | 773 | } |
@@ -873,8 +866,7 @@ discard block |
||
| 873 | 866 | array_shift($this->_ci_helper_paths); |
| 874 | 867 | array_shift($this->_ci_view_paths); |
| 875 | 868 | array_pop($config->_config_paths); |
| 876 | - } |
|
| 877 | - else |
|
| 869 | + } else |
|
| 878 | 870 | { |
| 879 | 871 | $path = rtrim($path, '/').'/'; |
| 880 | 872 | foreach (array('_ci_library_paths', '_ci_model_paths', '_ci_helper_paths') as $var) |
@@ -938,8 +930,7 @@ discard block |
||
| 938 | 930 | { |
| 939 | 931 | $_ci_x = explode('/', $_ci_path); |
| 940 | 932 | $_ci_file = end($_ci_x); |
| 941 | - } |
|
| 942 | - else |
|
| 933 | + } else |
|
| 943 | 934 | { |
| 944 | 935 | $_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION); |
| 945 | 936 | $_ci_file = ($_ci_ext === '') ? $_ci_view.'.php' : $_ci_view; |
@@ -1006,8 +997,7 @@ discard block |
||
| 1006 | 997 | if ( ! is_php('5.4') && ! ini_get('short_open_tag') && config_item('rewrite_short_tags') === TRUE) |
| 1007 | 998 | { |
| 1008 | 999 | echo eval('?>'.preg_replace('/;*\s*\?>/', '; ?>', str_replace('<?=', '<?php echo ', file_get_contents($_ci_path)))); |
| 1009 | - } |
|
| 1010 | - else |
|
| 1000 | + } else |
|
| 1011 | 1001 | { |
| 1012 | 1002 | include($_ci_path); // include() vs include_once() allows for multiple views with the same name |
| 1013 | 1003 | } |
@@ -1034,8 +1024,7 @@ discard block |
||
| 1034 | 1024 | if (ob_get_level() > $this->_ci_ob_level + 1) |
| 1035 | 1025 | { |
| 1036 | 1026 | ob_end_flush(); |
| 1037 | - } |
|
| 1038 | - else |
|
| 1027 | + } else |
|
| 1039 | 1028 | { |
| 1040 | 1029 | $_ci_CI->output->append_output(ob_get_contents()); |
| 1041 | 1030 | @ob_end_clean(); |
@@ -1075,8 +1064,7 @@ discard block |
||
| 1075 | 1064 | |
| 1076 | 1065 | // Get the filename from the path |
| 1077 | 1066 | $class = substr($class, $last_slash); |
| 1078 | - } |
|
| 1079 | - else |
|
| 1067 | + } else |
|
| 1080 | 1068 | { |
| 1081 | 1069 | $subdir = ''; |
| 1082 | 1070 | } |
@@ -1214,8 +1202,7 @@ discard block |
||
| 1214 | 1202 | if (file_exists(CI_PHPUNIT_TESTPATH.'replacing/libraries/'.$file_path.$library_name.'.php')) |
| 1215 | 1203 | { |
| 1216 | 1204 | include_once(CI_PHPUNIT_TESTPATH.'replacing/libraries/'.$file_path.$library_name.'.php'); |
| 1217 | - } |
|
| 1218 | - else |
|
| 1205 | + } else |
|
| 1219 | 1206 | { |
| 1220 | 1207 | include_once(BASEPATH.'libraries/'.$file_path.$library_name.'.php'); |
| 1221 | 1208 | } |
@@ -1279,8 +1266,7 @@ discard block |
||
| 1279 | 1266 | { |
| 1280 | 1267 | include($path.'config/'.strtolower($class).'.php'); |
| 1281 | 1268 | $found = TRUE; |
| 1282 | - } |
|
| 1283 | - elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php')) |
|
| 1269 | + } elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php')) |
|
| 1284 | 1270 | { |
| 1285 | 1271 | include($path.'config/'.ucfirst(strtolower($class)).'.php'); |
| 1286 | 1272 | $found = TRUE; |
@@ -1290,8 +1276,7 @@ discard block |
||
| 1290 | 1276 | { |
| 1291 | 1277 | include($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php'); |
| 1292 | 1278 | $found = TRUE; |
| 1293 | - } |
|
| 1294 | - elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php')) |
|
| 1279 | + } elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php')) |
|
| 1295 | 1280 | { |
| 1296 | 1281 | include($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php'); |
| 1297 | 1282 | $found = TRUE; |
@@ -200,16 +200,14 @@ discard block |
||
| 200 | 200 | if (empty($library)) |
| 201 | 201 | { |
| 202 | 202 | return $this; |
| 203 | - } |
|
| 204 | - elseif (is_array($library)) |
|
| 203 | + } elseif (is_array($library)) |
|
| 205 | 204 | { |
| 206 | 205 | foreach ($library as $key => $value) |
| 207 | 206 | { |
| 208 | 207 | if (is_int($key)) |
| 209 | 208 | { |
| 210 | 209 | $this->library($value, $params); |
| 211 | - } |
|
| 212 | - else |
|
| 210 | + } else |
|
| 213 | 211 | { |
| 214 | 212 | $this->library($key, $params, $value); |
| 215 | 213 | } |
@@ -246,8 +244,7 @@ discard block |
||
| 246 | 244 | if (empty($model)) |
| 247 | 245 | { |
| 248 | 246 | return $this; |
| 249 | - } |
|
| 250 | - elseif (is_array($model)) |
|
| 247 | + } elseif (is_array($model)) |
|
| 251 | 248 | { |
| 252 | 249 | foreach ($model as $key => $value) |
| 253 | 250 | { |
@@ -315,8 +312,7 @@ discard block |
||
| 315 | 312 | } |
| 316 | 313 | |
| 317 | 314 | log_message('info', 'CI_Model class loaded'); |
| 318 | - } |
|
| 319 | - elseif ( ! class_exists('CI_Model', FALSE)) |
|
| 315 | + } elseif ( ! class_exists('CI_Model', FALSE)) |
|
| 320 | 316 | { |
| 321 | 317 | require_once(BASEPATH.'core'.DIRECTORY_SEPARATOR.'Model.php'); |
| 322 | 318 | } |
@@ -477,8 +473,7 @@ discard block |
||
| 477 | 473 | require_once($driver_path); |
| 478 | 474 | $class = 'CI_DB_'.$db->dbdriver.'_'.$db->subdriver.'_forge'; |
| 479 | 475 | } |
| 480 | - } |
|
| 481 | - else |
|
| 476 | + } else |
|
| 482 | 477 | { |
| 483 | 478 | $class = 'CI_DB_'.$db->dbdriver.'_forge'; |
| 484 | 479 | } |
@@ -765,16 +760,14 @@ discard block |
||
| 765 | 760 | if (is_int($key)) |
| 766 | 761 | { |
| 767 | 762 | $this->driver($value, $params); |
| 768 | - } |
|
| 769 | - else |
|
| 763 | + } else |
|
| 770 | 764 | { |
| 771 | 765 | $this->driver($key, $params, $value); |
| 772 | 766 | } |
| 773 | 767 | } |
| 774 | 768 | |
| 775 | 769 | return $this; |
| 776 | - } |
|
| 777 | - elseif (empty($library)) |
|
| 770 | + } elseif (empty($library)) |
|
| 778 | 771 | { |
| 779 | 772 | return FALSE; |
| 780 | 773 | } |
@@ -873,8 +866,7 @@ discard block |
||
| 873 | 866 | array_shift($this->_ci_helper_paths); |
| 874 | 867 | array_shift($this->_ci_view_paths); |
| 875 | 868 | array_pop($config->_config_paths); |
| 876 | - } |
|
| 877 | - else |
|
| 869 | + } else |
|
| 878 | 870 | { |
| 879 | 871 | $path = rtrim($path, '/').'/'; |
| 880 | 872 | foreach (array('_ci_library_paths', '_ci_model_paths', '_ci_helper_paths') as $var) |
@@ -938,8 +930,7 @@ discard block |
||
| 938 | 930 | { |
| 939 | 931 | $_ci_x = explode('/', $_ci_path); |
| 940 | 932 | $_ci_file = end($_ci_x); |
| 941 | - } |
|
| 942 | - else |
|
| 933 | + } else |
|
| 943 | 934 | { |
| 944 | 935 | $_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION); |
| 945 | 936 | $_ci_file = ($_ci_ext === '') ? $_ci_view.'.php' : $_ci_view; |
@@ -1006,8 +997,7 @@ discard block |
||
| 1006 | 997 | if ( ! is_php('5.4') && ! ini_get('short_open_tag') && config_item('rewrite_short_tags') === TRUE) |
| 1007 | 998 | { |
| 1008 | 999 | echo eval('?>'.preg_replace('/;*\s*\?>/', '; ?>', str_replace('<?=', '<?php echo ', file_get_contents($_ci_path)))); |
| 1009 | - } |
|
| 1010 | - else |
|
| 1000 | + } else |
|
| 1011 | 1001 | { |
| 1012 | 1002 | include($_ci_path); // include() vs include_once() allows for multiple views with the same name |
| 1013 | 1003 | } |
@@ -1034,8 +1024,7 @@ discard block |
||
| 1034 | 1024 | if (ob_get_level() > $this->_ci_ob_level + 1) |
| 1035 | 1025 | { |
| 1036 | 1026 | ob_end_flush(); |
| 1037 | - } |
|
| 1038 | - else |
|
| 1027 | + } else |
|
| 1039 | 1028 | { |
| 1040 | 1029 | $_ci_CI->output->append_output(ob_get_contents()); |
| 1041 | 1030 | @ob_end_clean(); |
@@ -1075,8 +1064,7 @@ discard block |
||
| 1075 | 1064 | |
| 1076 | 1065 | // Get the filename from the path |
| 1077 | 1066 | $class = substr($class, $last_slash); |
| 1078 | - } |
|
| 1079 | - else |
|
| 1067 | + } else |
|
| 1080 | 1068 | { |
| 1081 | 1069 | $subdir = ''; |
| 1082 | 1070 | } |
@@ -1214,8 +1202,7 @@ discard block |
||
| 1214 | 1202 | if (file_exists(CI_PHPUNIT_TESTPATH.'replacing/libraries/'.$file_path.$library_name.'.php')) |
| 1215 | 1203 | { |
| 1216 | 1204 | include_once(CI_PHPUNIT_TESTPATH.'replacing/libraries/'.$file_path.$library_name.'.php'); |
| 1217 | - } |
|
| 1218 | - else |
|
| 1205 | + } else |
|
| 1219 | 1206 | { |
| 1220 | 1207 | include_once(BASEPATH.'libraries/'.$file_path.$library_name.'.php'); |
| 1221 | 1208 | } |
@@ -1279,8 +1266,7 @@ discard block |
||
| 1279 | 1266 | { |
| 1280 | 1267 | include($path.'config/'.strtolower($class).'.php'); |
| 1281 | 1268 | $found = TRUE; |
| 1282 | - } |
|
| 1283 | - elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php')) |
|
| 1269 | + } elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php')) |
|
| 1284 | 1270 | { |
| 1285 | 1271 | include($path.'config/'.ucfirst(strtolower($class)).'.php'); |
| 1286 | 1272 | $found = TRUE; |
@@ -1290,8 +1276,7 @@ discard block |
||
| 1290 | 1276 | { |
| 1291 | 1277 | include($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php'); |
| 1292 | 1278 | $found = TRUE; |
| 1293 | - } |
|
| 1294 | - elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php')) |
|
| 1279 | + } elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php')) |
|
| 1295 | 1280 | { |
| 1296 | 1281 | include($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php'); |
| 1297 | 1282 | $found = TRUE; |
@@ -200,16 +200,14 @@ discard block |
||
| 200 | 200 | if (empty($library)) |
| 201 | 201 | { |
| 202 | 202 | return $this; |
| 203 | - } |
|
| 204 | - elseif (is_array($library)) |
|
| 203 | + } elseif (is_array($library)) |
|
| 205 | 204 | { |
| 206 | 205 | foreach ($library as $key => $value) |
| 207 | 206 | { |
| 208 | 207 | if (is_int($key)) |
| 209 | 208 | { |
| 210 | 209 | $this->library($value, $params); |
| 211 | - } |
|
| 212 | - else |
|
| 210 | + } else |
|
| 213 | 211 | { |
| 214 | 212 | $this->library($key, $params, $value); |
| 215 | 213 | } |
@@ -246,8 +244,7 @@ discard block |
||
| 246 | 244 | if (empty($model)) |
| 247 | 245 | { |
| 248 | 246 | return $this; |
| 249 | - } |
|
| 250 | - elseif (is_array($model)) |
|
| 247 | + } elseif (is_array($model)) |
|
| 251 | 248 | { |
| 252 | 249 | foreach ($model as $key => $value) |
| 253 | 250 | { |
@@ -313,8 +310,7 @@ discard block |
||
| 313 | 310 | { |
| 314 | 311 | throw new RuntimeException($app_path."Model.php exists, but doesn't declare class CI_Model"); |
| 315 | 312 | } |
| 316 | - } |
|
| 317 | - elseif ( ! class_exists('CI_Model', FALSE)) |
|
| 313 | + } elseif ( ! class_exists('CI_Model', FALSE)) |
|
| 318 | 314 | { |
| 319 | 315 | require_once(BASEPATH.'core'.DIRECTORY_SEPARATOR.'Model.php'); |
| 320 | 316 | } |
@@ -471,8 +467,7 @@ discard block |
||
| 471 | 467 | require_once($driver_path); |
| 472 | 468 | $class = 'CI_DB_'.$db->dbdriver.'_'.$db->subdriver.'_forge'; |
| 473 | 469 | } |
| 474 | - } |
|
| 475 | - else |
|
| 470 | + } else |
|
| 476 | 471 | { |
| 477 | 472 | $class = 'CI_DB_'.$db->dbdriver.'_forge'; |
| 478 | 473 | } |
@@ -761,16 +756,14 @@ discard block |
||
| 761 | 756 | if (is_int($key)) |
| 762 | 757 | { |
| 763 | 758 | $this->driver($value, $params); |
| 764 | - } |
|
| 765 | - else |
|
| 759 | + } else |
|
| 766 | 760 | { |
| 767 | 761 | $this->driver($key, $params, $value); |
| 768 | 762 | } |
| 769 | 763 | } |
| 770 | 764 | |
| 771 | 765 | return $this; |
| 772 | - } |
|
| 773 | - elseif (empty($library)) |
|
| 766 | + } elseif (empty($library)) |
|
| 774 | 767 | { |
| 775 | 768 | return FALSE; |
| 776 | 769 | } |
@@ -869,8 +862,7 @@ discard block |
||
| 869 | 862 | array_shift($this->_ci_helper_paths); |
| 870 | 863 | array_shift($this->_ci_view_paths); |
| 871 | 864 | array_pop($config->_config_paths); |
| 872 | - } |
|
| 873 | - else |
|
| 865 | + } else |
|
| 874 | 866 | { |
| 875 | 867 | $path = rtrim($path, '/').'/'; |
| 876 | 868 | foreach (array('_ci_library_paths', '_ci_model_paths', '_ci_helper_paths') as $var) |
@@ -934,8 +926,7 @@ discard block |
||
| 934 | 926 | { |
| 935 | 927 | $_ci_x = explode('/', $_ci_path); |
| 936 | 928 | $_ci_file = end($_ci_x); |
| 937 | - } |
|
| 938 | - else |
|
| 929 | + } else |
|
| 939 | 930 | { |
| 940 | 931 | $_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION); |
| 941 | 932 | $_ci_file = ($_ci_ext === '') ? $_ci_view.'.php' : $_ci_view; |
@@ -1002,8 +993,7 @@ discard block |
||
| 1002 | 993 | if ( ! is_php('5.4') && ! ini_get('short_open_tag') && config_item('rewrite_short_tags') === TRUE) |
| 1003 | 994 | { |
| 1004 | 995 | echo eval('?>'.preg_replace('/;*\s*\?>/', '; ?>', str_replace('<?=', '<?php echo ', file_get_contents($_ci_path)))); |
| 1005 | - } |
|
| 1006 | - else |
|
| 996 | + } else |
|
| 1007 | 997 | { |
| 1008 | 998 | include($_ci_path); // include() vs include_once() allows for multiple views with the same name |
| 1009 | 999 | } |
@@ -1030,8 +1020,7 @@ discard block |
||
| 1030 | 1020 | if (ob_get_level() > $this->_ci_ob_level + 1) |
| 1031 | 1021 | { |
| 1032 | 1022 | ob_end_flush(); |
| 1033 | - } |
|
| 1034 | - else |
|
| 1023 | + } else |
|
| 1035 | 1024 | { |
| 1036 | 1025 | $_ci_CI->output->append_output(ob_get_contents()); |
| 1037 | 1026 | @ob_end_clean(); |
@@ -1071,8 +1060,7 @@ discard block |
||
| 1071 | 1060 | |
| 1072 | 1061 | // Get the filename from the path |
| 1073 | 1062 | $class = substr($class, $last_slash); |
| 1074 | - } |
|
| 1075 | - else |
|
| 1063 | + } else |
|
| 1076 | 1064 | { |
| 1077 | 1065 | $subdir = ''; |
| 1078 | 1066 | } |
@@ -1210,8 +1198,7 @@ discard block |
||
| 1210 | 1198 | if (file_exists(CI_PHPUNIT_TESTPATH.'replacing/libraries/'.$file_path.$library_name.'.php')) |
| 1211 | 1199 | { |
| 1212 | 1200 | include_once(CI_PHPUNIT_TESTPATH.'replacing/libraries/'.$file_path.$library_name.'.php'); |
| 1213 | - } |
|
| 1214 | - else |
|
| 1201 | + } else |
|
| 1215 | 1202 | { |
| 1216 | 1203 | include_once(BASEPATH.'libraries/'.$file_path.$library_name.'.php'); |
| 1217 | 1204 | } |
@@ -1227,8 +1214,7 @@ discard block |
||
| 1227 | 1214 | { |
| 1228 | 1215 | $prefix = config_item('subclass_prefix'); |
| 1229 | 1216 | break; |
| 1230 | - } |
|
| 1231 | - else |
|
| 1217 | + } else |
|
| 1232 | 1218 | { |
| 1233 | 1219 | log_message('debug', $path.' exists, but does not declare '.$subclass); |
| 1234 | 1220 | } |
@@ -1277,8 +1263,7 @@ discard block |
||
| 1277 | 1263 | { |
| 1278 | 1264 | include($path.'config/'.strtolower($class).'.php'); |
| 1279 | 1265 | $found = TRUE; |
| 1280 | - } |
|
| 1281 | - elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php')) |
|
| 1266 | + } elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php')) |
|
| 1282 | 1267 | { |
| 1283 | 1268 | include($path.'config/'.ucfirst(strtolower($class)).'.php'); |
| 1284 | 1269 | $found = TRUE; |
@@ -1288,8 +1273,7 @@ discard block |
||
| 1288 | 1273 | { |
| 1289 | 1274 | include($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php'); |
| 1290 | 1275 | $found = TRUE; |
| 1291 | - } |
|
| 1292 | - elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php')) |
|
| 1276 | + } elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php')) |
|
| 1293 | 1277 | { |
| 1294 | 1278 | include($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php'); |
| 1295 | 1279 | $found = TRUE; |
@@ -200,16 +200,14 @@ discard block |
||
| 200 | 200 | if (empty($library)) |
| 201 | 201 | { |
| 202 | 202 | return $this; |
| 203 | - } |
|
| 204 | - elseif (is_array($library)) |
|
| 203 | + } elseif (is_array($library)) |
|
| 205 | 204 | { |
| 206 | 205 | foreach ($library as $key => $value) |
| 207 | 206 | { |
| 208 | 207 | if (is_int($key)) |
| 209 | 208 | { |
| 210 | 209 | $this->library($value, $params); |
| 211 | - } |
|
| 212 | - else |
|
| 210 | + } else |
|
| 213 | 211 | { |
| 214 | 212 | $this->library($key, $params, $value); |
| 215 | 213 | } |
@@ -246,8 +244,7 @@ discard block |
||
| 246 | 244 | if (empty($model)) |
| 247 | 245 | { |
| 248 | 246 | return $this; |
| 249 | - } |
|
| 250 | - elseif (is_array($model)) |
|
| 247 | + } elseif (is_array($model)) |
|
| 251 | 248 | { |
| 252 | 249 | foreach ($model as $key => $value) |
| 253 | 250 | { |
@@ -313,8 +310,7 @@ discard block |
||
| 313 | 310 | { |
| 314 | 311 | throw new RuntimeException($app_path."Model.php exists, but doesn't declare class CI_Model"); |
| 315 | 312 | } |
| 316 | - } |
|
| 317 | - elseif ( ! class_exists('CI_Model', FALSE)) |
|
| 313 | + } elseif ( ! class_exists('CI_Model', FALSE)) |
|
| 318 | 314 | { |
| 319 | 315 | require_once(BASEPATH.'core'.DIRECTORY_SEPARATOR.'Model.php'); |
| 320 | 316 | } |
@@ -471,8 +467,7 @@ discard block |
||
| 471 | 467 | require_once($driver_path); |
| 472 | 468 | $class = 'CI_DB_'.$db->dbdriver.'_'.$db->subdriver.'_forge'; |
| 473 | 469 | } |
| 474 | - } |
|
| 475 | - else |
|
| 470 | + } else |
|
| 476 | 471 | { |
| 477 | 472 | $class = 'CI_DB_'.$db->dbdriver.'_forge'; |
| 478 | 473 | } |
@@ -761,16 +756,14 @@ discard block |
||
| 761 | 756 | if (is_int($key)) |
| 762 | 757 | { |
| 763 | 758 | $this->driver($value, $params); |
| 764 | - } |
|
| 765 | - else |
|
| 759 | + } else |
|
| 766 | 760 | { |
| 767 | 761 | $this->driver($key, $params, $value); |
| 768 | 762 | } |
| 769 | 763 | } |
| 770 | 764 | |
| 771 | 765 | return $this; |
| 772 | - } |
|
| 773 | - elseif (empty($library)) |
|
| 766 | + } elseif (empty($library)) |
|
| 774 | 767 | { |
| 775 | 768 | return FALSE; |
| 776 | 769 | } |
@@ -869,8 +862,7 @@ discard block |
||
| 869 | 862 | array_shift($this->_ci_helper_paths); |
| 870 | 863 | array_shift($this->_ci_view_paths); |
| 871 | 864 | array_pop($config->_config_paths); |
| 872 | - } |
|
| 873 | - else |
|
| 865 | + } else |
|
| 874 | 866 | { |
| 875 | 867 | $path = rtrim($path, '/').'/'; |
| 876 | 868 | foreach (array('_ci_library_paths', '_ci_model_paths', '_ci_helper_paths') as $var) |
@@ -934,8 +926,7 @@ discard block |
||
| 934 | 926 | { |
| 935 | 927 | $_ci_x = explode('/', $_ci_path); |
| 936 | 928 | $_ci_file = end($_ci_x); |
| 937 | - } |
|
| 938 | - else |
|
| 929 | + } else |
|
| 939 | 930 | { |
| 940 | 931 | $_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION); |
| 941 | 932 | $_ci_file = ($_ci_ext === '') ? $_ci_view.'.php' : $_ci_view; |
@@ -1002,8 +993,7 @@ discard block |
||
| 1002 | 993 | if ( ! is_php('5.4') && ! ini_get('short_open_tag') && config_item('rewrite_short_tags') === TRUE) |
| 1003 | 994 | { |
| 1004 | 995 | echo eval('?>'.preg_replace('/;*\s*\?>/', '; ?>', str_replace('<?=', '<?php echo ', file_get_contents($_ci_path)))); |
| 1005 | - } |
|
| 1006 | - else |
|
| 996 | + } else |
|
| 1007 | 997 | { |
| 1008 | 998 | include($_ci_path); // include() vs include_once() allows for multiple views with the same name |
| 1009 | 999 | } |
@@ -1030,8 +1020,7 @@ discard block |
||
| 1030 | 1020 | if (ob_get_level() > $this->_ci_ob_level + 1) |
| 1031 | 1021 | { |
| 1032 | 1022 | ob_end_flush(); |
| 1033 | - } |
|
| 1034 | - else |
|
| 1023 | + } else |
|
| 1035 | 1024 | { |
| 1036 | 1025 | $_ci_CI->output->append_output(ob_get_contents()); |
| 1037 | 1026 | @ob_end_clean(); |
@@ -1071,8 +1060,7 @@ discard block |
||
| 1071 | 1060 | |
| 1072 | 1061 | // Get the filename from the path |
| 1073 | 1062 | $class = substr($class, $last_slash); |
| 1074 | - } |
|
| 1075 | - else |
|
| 1063 | + } else |
|
| 1076 | 1064 | { |
| 1077 | 1065 | $subdir = ''; |
| 1078 | 1066 | } |
@@ -1210,8 +1198,7 @@ discard block |
||
| 1210 | 1198 | if (file_exists(CI_PHPUNIT_TESTPATH.'replacing/libraries/'.$file_path.$library_name.'.php')) |
| 1211 | 1199 | { |
| 1212 | 1200 | include_once(CI_PHPUNIT_TESTPATH.'replacing/libraries/'.$file_path.$library_name.'.php'); |
| 1213 | - } |
|
| 1214 | - else |
|
| 1201 | + } else |
|
| 1215 | 1202 | { |
| 1216 | 1203 | include_once(BASEPATH.'libraries/'.$file_path.$library_name.'.php'); |
| 1217 | 1204 | } |
@@ -1227,8 +1214,7 @@ discard block |
||
| 1227 | 1214 | { |
| 1228 | 1215 | $prefix = config_item('subclass_prefix'); |
| 1229 | 1216 | break; |
| 1230 | - } |
|
| 1231 | - else |
|
| 1217 | + } else |
|
| 1232 | 1218 | { |
| 1233 | 1219 | log_message('debug', $path.' exists, but does not declare '.$subclass); |
| 1234 | 1220 | } |
@@ -1277,8 +1263,7 @@ discard block |
||
| 1277 | 1263 | { |
| 1278 | 1264 | include($path.'config/'.strtolower($class).'.php'); |
| 1279 | 1265 | $found = TRUE; |
| 1280 | - } |
|
| 1281 | - elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php')) |
|
| 1266 | + } elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php')) |
|
| 1282 | 1267 | { |
| 1283 | 1268 | include($path.'config/'.ucfirst(strtolower($class)).'.php'); |
| 1284 | 1269 | $found = TRUE; |
@@ -1288,8 +1273,7 @@ discard block |
||
| 1288 | 1273 | { |
| 1289 | 1274 | include($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php'); |
| 1290 | 1275 | $found = TRUE; |
| 1291 | - } |
|
| 1292 | - elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php')) |
|
| 1276 | + } elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php')) |
|
| 1293 | 1277 | { |
| 1294 | 1278 | include($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php'); |
| 1295 | 1279 | $found = TRUE; |
@@ -89,8 +89,7 @@ discard block |
||
| 89 | 89 | if (! self::wiredesignzHmvcInstalled()) |
| 90 | 90 | { |
| 91 | 91 | new CI_Controller(); |
| 92 | - } |
|
| 93 | - else |
|
| 92 | + } else |
|
| 94 | 93 | { |
| 95 | 94 | new MX_Controller(); |
| 96 | 95 | } |
@@ -115,13 +114,11 @@ discard block |
||
| 115 | 114 | if ($use_my_controller && self::hasMyController()) |
| 116 | 115 | { |
| 117 | 116 | new self::$controller_class; |
| 118 | - } |
|
| 119 | - else |
|
| 117 | + } else |
|
| 120 | 118 | { |
| 121 | 119 | new CI_Controller(); |
| 122 | 120 | } |
| 123 | - } |
|
| 124 | - else |
|
| 121 | + } else |
|
| 125 | 122 | { |
| 126 | 123 | new CI(); |
| 127 | 124 | new MX_Controller(); |
@@ -200,16 +200,14 @@ discard block |
||
| 200 | 200 | if (empty($library)) |
| 201 | 201 | { |
| 202 | 202 | return $this; |
| 203 | - } |
|
| 204 | - elseif (is_array($library)) |
|
| 203 | + } elseif (is_array($library)) |
|
| 205 | 204 | { |
| 206 | 205 | foreach ($library as $key => $value) |
| 207 | 206 | { |
| 208 | 207 | if (is_int($key)) |
| 209 | 208 | { |
| 210 | 209 | $this->library($value, $params); |
| 211 | - } |
|
| 212 | - else |
|
| 210 | + } else |
|
| 213 | 211 | { |
| 214 | 212 | $this->library($key, $params, $value); |
| 215 | 213 | } |
@@ -246,8 +244,7 @@ discard block |
||
| 246 | 244 | if (empty($model)) |
| 247 | 245 | { |
| 248 | 246 | return $this; |
| 249 | - } |
|
| 250 | - elseif (is_array($model)) |
|
| 247 | + } elseif (is_array($model)) |
|
| 251 | 248 | { |
| 252 | 249 | foreach ($model as $key => $value) |
| 253 | 250 | { |
@@ -315,8 +312,7 @@ discard block |
||
| 315 | 312 | } |
| 316 | 313 | |
| 317 | 314 | log_message('info', 'CI_Model class loaded'); |
| 318 | - } |
|
| 319 | - elseif ( ! class_exists('CI_Model', FALSE)) |
|
| 315 | + } elseif ( ! class_exists('CI_Model', FALSE)) |
|
| 320 | 316 | { |
| 321 | 317 | require_once(BASEPATH.'core'.DIRECTORY_SEPARATOR.'Model.php'); |
| 322 | 318 | } |
@@ -477,8 +473,7 @@ discard block |
||
| 477 | 473 | require_once($driver_path); |
| 478 | 474 | $class = 'CI_DB_'.$db->dbdriver.'_'.$db->subdriver.'_forge'; |
| 479 | 475 | } |
| 480 | - } |
|
| 481 | - else |
|
| 476 | + } else |
|
| 482 | 477 | { |
| 483 | 478 | $class = 'CI_DB_'.$db->dbdriver.'_forge'; |
| 484 | 479 | } |
@@ -765,16 +760,14 @@ discard block |
||
| 765 | 760 | if (is_int($key)) |
| 766 | 761 | { |
| 767 | 762 | $this->driver($value, $params); |
| 768 | - } |
|
| 769 | - else |
|
| 763 | + } else |
|
| 770 | 764 | { |
| 771 | 765 | $this->driver($key, $params, $value); |
| 772 | 766 | } |
| 773 | 767 | } |
| 774 | 768 | |
| 775 | 769 | return $this; |
| 776 | - } |
|
| 777 | - elseif (empty($library)) |
|
| 770 | + } elseif (empty($library)) |
|
| 778 | 771 | { |
| 779 | 772 | return FALSE; |
| 780 | 773 | } |
@@ -873,8 +866,7 @@ discard block |
||
| 873 | 866 | array_shift($this->_ci_helper_paths); |
| 874 | 867 | array_shift($this->_ci_view_paths); |
| 875 | 868 | array_pop($config->_config_paths); |
| 876 | - } |
|
| 877 | - else |
|
| 869 | + } else |
|
| 878 | 870 | { |
| 879 | 871 | $path = rtrim($path, '/').'/'; |
| 880 | 872 | foreach (array('_ci_library_paths', '_ci_model_paths', '_ci_helper_paths') as $var) |
@@ -938,8 +930,7 @@ discard block |
||
| 938 | 930 | { |
| 939 | 931 | $_ci_x = explode('/', $_ci_path); |
| 940 | 932 | $_ci_file = end($_ci_x); |
| 941 | - } |
|
| 942 | - else |
|
| 933 | + } else |
|
| 943 | 934 | { |
| 944 | 935 | $_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION); |
| 945 | 936 | $_ci_file = ($_ci_ext === '') ? $_ci_view.'.php' : $_ci_view; |
@@ -1006,8 +997,7 @@ discard block |
||
| 1006 | 997 | if ( ! is_php('5.4') && ! ini_get('short_open_tag') && config_item('rewrite_short_tags') === TRUE) |
| 1007 | 998 | { |
| 1008 | 999 | echo eval('?>'.preg_replace('/;*\s*\?>/', '; ?>', str_replace('<?=', '<?php echo ', file_get_contents($_ci_path)))); |
| 1009 | - } |
|
| 1010 | - else |
|
| 1000 | + } else |
|
| 1011 | 1001 | { |
| 1012 | 1002 | include($_ci_path); // include() vs include_once() allows for multiple views with the same name |
| 1013 | 1003 | } |
@@ -1034,8 +1024,7 @@ discard block |
||
| 1034 | 1024 | if (ob_get_level() > $this->_ci_ob_level + 1) |
| 1035 | 1025 | { |
| 1036 | 1026 | ob_end_flush(); |
| 1037 | - } |
|
| 1038 | - else |
|
| 1027 | + } else |
|
| 1039 | 1028 | { |
| 1040 | 1029 | $_ci_CI->output->append_output(ob_get_contents()); |
| 1041 | 1030 | @ob_end_clean(); |
@@ -1075,8 +1064,7 @@ discard block |
||
| 1075 | 1064 | |
| 1076 | 1065 | // Get the filename from the path |
| 1077 | 1066 | $class = substr($class, $last_slash); |
| 1078 | - } |
|
| 1079 | - else |
|
| 1067 | + } else |
|
| 1080 | 1068 | { |
| 1081 | 1069 | $subdir = ''; |
| 1082 | 1070 | } |
@@ -1214,8 +1202,7 @@ discard block |
||
| 1214 | 1202 | if (file_exists(TESTPATH.'_ci_phpunit_test/replacing/libraries/'.$file_path.$library_name.'.php')) |
| 1215 | 1203 | { |
| 1216 | 1204 | include_once(TESTPATH.'_ci_phpunit_test/replacing/libraries/'.$file_path.$library_name.'.php'); |
| 1217 | - } |
|
| 1218 | - else |
|
| 1205 | + } else |
|
| 1219 | 1206 | { |
| 1220 | 1207 | include_once(BASEPATH.'libraries/'.$file_path.$library_name.'.php'); |
| 1221 | 1208 | } |
@@ -1279,8 +1266,7 @@ discard block |
||
| 1279 | 1266 | { |
| 1280 | 1267 | include($path.'config/'.strtolower($class).'.php'); |
| 1281 | 1268 | $found = TRUE; |
| 1282 | - } |
|
| 1283 | - elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php')) |
|
| 1269 | + } elseif (file_exists($path.'config/'.ucfirst(strtolower($class)).'.php')) |
|
| 1284 | 1270 | { |
| 1285 | 1271 | include($path.'config/'.ucfirst(strtolower($class)).'.php'); |
| 1286 | 1272 | $found = TRUE; |
@@ -1290,8 +1276,7 @@ discard block |
||
| 1290 | 1276 | { |
| 1291 | 1277 | include($path.'config/'.ENVIRONMENT.'/'.strtolower($class).'.php'); |
| 1292 | 1278 | $found = TRUE; |
| 1293 | - } |
|
| 1294 | - elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php')) |
|
| 1279 | + } elseif (file_exists($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php')) |
|
| 1295 | 1280 | { |
| 1296 | 1281 | include($path.'config/'.ENVIRONMENT.'/'.ucfirst(strtolower($class)).'.php'); |
| 1297 | 1282 | $found = TRUE; |
@@ -511,8 +511,7 @@ discard block |
||
| 511 | 511 | { |
| 512 | 512 | // header('Content-Encoding: gzip'); |
| 513 | 513 | // header('Content-Length: '.self::strlen($output)); |
| 514 | - } |
|
| 515 | - else |
|
| 514 | + } else |
|
| 516 | 515 | { |
| 517 | 516 | // User agent doesn't support gzip compression, |
| 518 | 517 | // so we'll have to decompress our cache |
@@ -552,8 +551,7 @@ discard block |
||
| 552 | 551 | if (method_exists($CI, '_output')) |
| 553 | 552 | { |
| 554 | 553 | $CI->_output($output); |
| 555 | - } |
|
| 556 | - else |
|
| 554 | + } else |
|
| 557 | 555 | { |
| 558 | 556 | echo $output; // Send it to the browser! |
| 559 | 557 | } |
@@ -591,8 +589,7 @@ discard block |
||
| 591 | 589 | if (is_array($cache_query_string)) |
| 592 | 590 | { |
| 593 | 591 | $uri .= '?'.http_build_query(array_intersect_key($_GET, array_flip($cache_query_string))); |
| 594 | - } |
|
| 595 | - else |
|
| 592 | + } else |
|
| 596 | 593 | { |
| 597 | 594 | $uri .= '?'.$_SERVER['QUERY_STRING']; |
| 598 | 595 | } |
@@ -685,8 +682,7 @@ discard block |
||
| 685 | 682 | if (is_array($cache_query_string)) |
| 686 | 683 | { |
| 687 | 684 | $uri .= '?'.http_build_query(array_intersect_key($_GET, array_flip($cache_query_string))); |
| 688 | - } |
|
| 689 | - else |
|
| 685 | + } else |
|
| 690 | 686 | { |
| 691 | 687 | $uri .= '?'.$_SERVER['QUERY_STRING']; |
| 692 | 688 | } |
@@ -773,8 +769,7 @@ discard block |
||
| 773 | 769 | if (is_array($cache_query_string)) |
| 774 | 770 | { |
| 775 | 771 | $uri .= '?'.http_build_query(array_intersect_key($_GET, array_flip($cache_query_string))); |
| 776 | - } |
|
| 777 | - else |
|
| 772 | + } else |
|
| 778 | 773 | { |
| 779 | 774 | $uri .= '?'.$_SERVER['QUERY_STRING']; |
| 780 | 775 | } |
@@ -200,29 +200,30 @@ discard block |
||
| 200 | 200 | if (isset($array[$index])) |
| 201 | 201 | { |
| 202 | 202 | $value = $array[$index]; |
| 203 | - } |
|
| 204 | - elseif (($count = preg_match_all('/(?:^[^\[]+)|\[[^]]*\]/', $index, $matches)) > 1) // Does the index contain array notation |
|
| 203 | + } elseif (($count = preg_match_all('/(?:^[^\[]+)|\[[^]]*\]/', $index, $matches)) > 1) { |
|
| 204 | + // Does the index contain array notation |
|
| 205 | 205 | { |
| 206 | 206 | $value = $array; |
| 207 | + } |
|
| 207 | 208 | for ($i = 0; $i < $count; $i++) |
| 208 | 209 | { |
| 209 | 210 | $key = trim($matches[0][$i], '[]'); |
| 210 | - if ($key === '') // Empty notation will return the value as array |
|
| 211 | + if ($key === '') { |
|
| 212 | + // Empty notation will return the value as array |
|
| 211 | 213 | { |
| 212 | 214 | break; |
| 213 | 215 | } |
| 216 | + } |
|
| 214 | 217 | |
| 215 | 218 | if (isset($value[$key])) |
| 216 | 219 | { |
| 217 | 220 | $value = $value[$key]; |
| 218 | - } |
|
| 219 | - else |
|
| 221 | + } else |
|
| 220 | 222 | { |
| 221 | 223 | return NULL; |
| 222 | 224 | } |
| 223 | 225 | } |
| 224 | - } |
|
| 225 | - else |
|
| 226 | + } else |
|
| 226 | 227 | { |
| 227 | 228 | return NULL; |
| 228 | 229 | } |
@@ -421,8 +422,7 @@ discard block |
||
| 421 | 422 | if ( ! is_numeric($expire)) |
| 422 | 423 | { |
| 423 | 424 | $expire = time() - 86500; |
| 424 | - } |
|
| 425 | - else |
|
| 425 | + } else |
|
| 426 | 426 | { |
| 427 | 427 | $expire = ($expire > 0) ? time() + $expire : 0; |
| 428 | 428 | } |
@@ -483,8 +483,7 @@ discard block |
||
| 483 | 483 | if ( ! $this->valid_ip($spoof)) |
| 484 | 484 | { |
| 485 | 485 | $spoof = NULL; |
| 486 | - } |
|
| 487 | - else |
|
| 486 | + } else |
|
| 488 | 487 | { |
| 489 | 488 | break; |
| 490 | 489 | } |
@@ -537,8 +536,7 @@ discard block |
||
| 537 | 536 | } |
| 538 | 537 | |
| 539 | 538 | $sprintf = '%016b%016b%016b%016b%016b%016b%016b%016b'; |
| 540 | - } |
|
| 541 | - else |
|
| 539 | + } else |
|
| 542 | 540 | { |
| 543 | 541 | $ip = explode('.', $this->ip_address); |
| 544 | 542 | $sprintf = '%08b%08b%08b%08b'; |
@@ -558,8 +556,7 @@ discard block |
||
| 558 | 556 | { |
| 559 | 557 | $netaddr[$j] = intval($netaddr[$j], 16); |
| 560 | 558 | } |
| 561 | - } |
|
| 562 | - else |
|
| 559 | + } else |
|
| 563 | 560 | { |
| 564 | 561 | $netaddr = explode('.', $netaddr); |
| 565 | 562 | } |
@@ -646,8 +643,7 @@ discard block |
||
| 646 | 643 | if ($this->_allow_get_array === FALSE) |
| 647 | 644 | { |
| 648 | 645 | $_GET = array(); |
| 649 | - } |
|
| 650 | - elseif (is_array($_GET)) |
|
| 646 | + } elseif (is_array($_GET)) |
|
| 651 | 647 | { |
| 652 | 648 | foreach ($_GET as $key => $val) |
| 653 | 649 | { |
@@ -683,8 +679,7 @@ discard block |
||
| 683 | 679 | if (($cookie_key = $this->_clean_input_keys($key)) !== FALSE) |
| 684 | 680 | { |
| 685 | 681 | $_COOKIE[$cookie_key] = $this->_clean_input_data($val); |
| 686 | - } |
|
| 687 | - else |
|
| 682 | + } else |
|
| 688 | 683 | { |
| 689 | 684 | unset($_COOKIE[$key]); |
| 690 | 685 | } |
@@ -774,8 +769,7 @@ discard block |
||
| 774 | 769 | if ($fatal === TRUE) |
| 775 | 770 | { |
| 776 | 771 | return FALSE; |
| 777 | - } |
|
| 778 | - else |
|
| 772 | + } else |
|
| 779 | 773 | { |
| 780 | 774 | set_status_header(503); |
| 781 | 775 | echo 'Disallowed Key Characters.'; |
@@ -814,8 +808,7 @@ discard block |
||
| 814 | 808 | if (function_exists('apache_request_headers')) |
| 815 | 809 | { |
| 816 | 810 | $this->headers = apache_request_headers(); |
| 817 | - } |
|
| 818 | - else |
|
| 811 | + } else |
|
| 819 | 812 | { |
| 820 | 813 | isset($_SERVER['CONTENT_TYPE']) && $this->headers['Content-Type'] = $_SERVER['CONTENT_TYPE']; |
| 821 | 814 | |
@@ -944,8 +937,7 @@ discard block |
||
| 944 | 937 | { |
| 945 | 938 | isset($this->_raw_input_stream) OR $this->_raw_input_stream = file_get_contents('php://input'); |
| 946 | 939 | return $this->_raw_input_stream; |
| 947 | - } |
|
| 948 | - elseif ($name === 'ip_address') |
|
| 940 | + } elseif ($name === 'ip_address') |
|
| 949 | 941 | { |
| 950 | 942 | return $this->ip_address; |
| 951 | 943 | } |
@@ -160,8 +160,7 @@ discard block |
||
| 160 | 160 | $exit_status = $status_code + 9; // 9 is EXIT__AUTO_MIN |
| 161 | 161 | |
| 162 | 162 | $status_code = 500; |
| 163 | - } |
|
| 164 | - else |
|
| 163 | + } else |
|
| 165 | 164 | { |
| 166 | 165 | $exit_status = 1; // EXIT_ERROR |
| 167 | 166 | } |
@@ -256,8 +255,7 @@ discard block |
||
| 256 | 255 | if (isset($stati[$code])) |
| 257 | 256 | { |
| 258 | 257 | $text = $stati[$code]; |
| 259 | - } |
|
| 260 | - else |
|
| 258 | + } else |
|
| 261 | 259 | { |
| 262 | 260 | show_error('No status text available. Please check your status code number or supply your own message text.', 500); |
| 263 | 261 | } |
@@ -327,8 +325,7 @@ discard block |
||
| 327 | 325 | if (file_exists($file_path = APPPATH.'config/'.ENVIRONMENT.'/config.php')) |
| 328 | 326 | { |
| 329 | 327 | require($file_path); |
| 330 | - } |
|
| 331 | - elseif ( ! $found) |
|
| 328 | + } elseif ( ! $found) |
|
| 332 | 329 | { |
| 333 | 330 | set_status_header(503); |
| 334 | 331 | echo 'The configuration file does not exist.'; |