From 1b90c27c46dde1b5cc79a295c5e36f402a144063 Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 31 Oct 2006 18:22:29 +0000 Subject: --- system/codeigniter/CodeIgniter.php | 3 ++- user_guide/changelog.html | 11 +++++++++++ user_guide/images/appflowchart.gif | Bin 25273 -> 25276 bytes user_guide/libraries/image_lib.html | 2 +- user_guide/libraries/loader.html | 2 +- user_guide/license.html | 2 +- 6 files changed, 16 insertions(+), 4 deletions(-) diff --git a/system/codeigniter/CodeIgniter.php b/system/codeigniter/CodeIgniter.php index 3e2b99dea..367d5eaac 100644 --- a/system/codeigniter/CodeIgniter.php +++ b/system/codeigniter/CodeIgniter.php @@ -27,7 +27,8 @@ * @link http://www.codeigniter.com/user_guide/ */ -define('APPVER', '1.5.0'); +// CI Version +define('APPVER', '1.5.0.1'); /* * ------------------------------------------------------ diff --git a/user_guide/changelog.html b/user_guide/changelog.html index c9dc74065..26d340b98 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -62,6 +62,16 @@ Change Log

Change Log

+

Version 1.5.0.1

+

Release Date: October 31, 2006

+ + +

Version 1.5.0

Release Date: October 30, 2006

@@ -104,6 +114,7 @@ Change Log
  • Fixed a bug that caused CI to stop working when the PHP magic __get() or __set() functions were used within models or controllers.
  • Fixed a pagination bug that was permitting negative values in the URL.
  • Fixed an oversight in which the Loader class was not allowed to be exteneded.
  • +
  • Changed _get_config() to get_config() since the function is not a private one.
  • Deprecated "init" folder. Initialization happens automatically now. Please see documentation.
  • Deprecated $this->db->field_names() USE $this->db->list_fields()
  • Deprecated the $config['log_errors'] item from the config.php file. Instead, $config['log_threshold'] can be set to "0" to turn it off.
  • diff --git a/user_guide/images/appflowchart.gif b/user_guide/images/appflowchart.gif index 5ca1ade4c..422332c9e 100644 Binary files a/user_guide/images/appflowchart.gif and b/user_guide/images/appflowchart.gif differ diff --git a/user_guide/libraries/image_lib.html b/user_guide/libraries/image_lib.html index 726f8c92b..5b4575b0e 100644 --- a/user_guide/libraries/image_lib.html +++ b/user_guide/libraries/image_lib.html @@ -103,7 +103,7 @@ $config['maintain_ratio'] = TRUE;
    $config['width'] = 75;
    $config['height'] = 50;

    -$this->image_lib->initialize($config); +$this->load->library('image_lib', $config);

    $this->image_lib->resize(); diff --git a/user_guide/libraries/loader.html b/user_guide/libraries/loader.html index c7cf82d40..448ba4c47 100644 --- a/user_guide/libraries/loader.html +++ b/user_guide/libraries/loader.html @@ -93,7 +93,7 @@ Each library is described in detail in its own page, so please read the informat

    This function is used to load your View files. If you haven't read the Views section of the user guide it is recommended that you do since it shows you how this function is typically used.

    -

    The first parameter is required. It is the name of the view file you would like to load.

    +

    The first parameter is required. It is the name of the view file you would like to load.  Note: The .php file extension does not need to be specified unless you use something other then .php.

    The second optional parameter can take an associative array or an object as input, which it runs through the PHP extract function to diff --git a/user_guide/license.html b/user_guide/license.html index a0b687661..3c07c79c9 100644 --- a/user_guide/license.html +++ b/user_guide/license.html @@ -103,7 +103,7 @@ Previous Topic:  Server Requiremen    ·   Top of Page   ·   User Guide Home   ·   -Next Topic:  Change Log +Next Topic:  Change Log

    Code Igniter  ·  Copyright © 2006  ·  pMachine, Inc.

    -- cgit v1.2.3-24-g4f1b