We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4534be commit 10ad52eCopy full SHA for 10ad52e
2 files changed
app/Common.php
@@ -1,7 +1,7 @@
1
<?php
2
3
/**
4
- * Te goal of this file is to allow developers a location
+ * The goal of this file is to allow developers a location
5
* where they can overwrite core procedural functions and
6
* replace them with their own. This file is loaded during
7
* the bootstrap process and is called during the frameworks
system/bootstrap.php
@@ -97,8 +97,8 @@
97
}
98
99
// Let's see if an app/Common.php file exists
100
-if ( file_exists(APPPATH . 'Common.php')) {
101
- // If it does, let's require it
+if (file_exists(APPPATH . 'Common.php'))
+{
102
require_once APPPATH . 'Common.php';
103
104
0 commit comments