diff options
author | Andrey Andreev <narf@devilix.net> | 2015-05-26 22:07:53 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-05-26 22:07:53 +0200 |
commit | cf4cb7d6d6ef70d2096193acca8ccecf74487799 (patch) | |
tree | 8e2ab024918f57591b32cdda0261217ed92b875d | |
parent | da71f5aa255fc6fd26452664e730ea4297905ed3 (diff) |
[ci skip] Improve 3.0 upgrade instructions rendering
Close #3876
-rw-r--r-- | user_guide_src/source/installation/upgrade_300.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/user_guide_src/source/installation/upgrade_300.rst b/user_guide_src/source/installation/upgrade_300.rst index a3d712482..5429e77ca 100644 --- a/user_guide_src/source/installation/upgrade_300.rst +++ b/user_guide_src/source/installation/upgrade_300.rst @@ -34,12 +34,12 @@ For example, if you have the following library file: The same goes for driver libraries and extensions and/or overrides of CodeIgniter's own libraries and core classes. - application/libraries/MY_email.php + application/libraries/MY_email.php application/core/MY_log.php The above files should respectively be renamed to the following: - application/libraries/MY_Email.php + application/libraries/MY_Email.php application/core/MY_Log.php Controllers: @@ -76,9 +76,9 @@ Step 5: Move your Log class overrides or extensions The Log Class is considered as a "core" class and is now located in the **system/core/** directory. Therefore, in order for your Log class overrides -or extensions to work, you need to move them to **application/core/**:: +or extensions to work, you need to move them to **application/core/**: - application/libraries/Log.php -> application/core/Log.php + application/libraries/Log.php -> application/core/Log.php application/libraries/MY_Log.php -> application/core/MY_Log.php ***************************************** |