From 4488538665d37b07a08d7fe4ce6f4156a9899211 Mon Sep 17 00:00:00 2001 From: Greg Aker Date: Tue, 19 Apr 2011 15:28:40 -0500 Subject: Removed APPPATH.'third_party' from the packages autoloader to negate needless file stats if no packages exist or if the developer does not load any other packages by default. --- user_guide/installation/upgrade_203.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'user_guide/installation/upgrade_203.html') diff --git a/user_guide/installation/upgrade_203.html b/user_guide/installation/upgrade_203.html index 4937cf257..38cfb72c9 100644 --- a/user_guide/installation/upgrade_203.html +++ b/user_guide/installation/upgrade_203.html @@ -83,6 +83,18 @@ Upgrading from 2.0.2 to 2.0.3

Step 5: Change references of the EXT constant to ".php"

Note: The EXT Constant has been marked as deprecated, but has not been removed from the application. You are encouraged to make the changes sooner rather than later.

+

Step 6: Remove APPPATH.'third_party' from autoload.php

+ +

Open application/autoload.php, and look for the following:

+ +$autoload['packages'] = array(APPPATH.'third_party'); + +

If you have not chosen to load any additional packages, that line can be changed to:

+$autoload['packages'] = array(); + +

Which should provide for nominal performance gains if not autoloading packages.

+ + -- cgit v1.2.3-24-g4f1b