diff options
author | admin <devnull@localhost> | 2006-10-31 19:22:29 +0100 |
---|---|---|
committer | admin <devnull@localhost> | 2006-10-31 19:22:29 +0100 |
commit | 1b90c27c46dde1b5cc79a295c5e36f402a144063 (patch) | |
tree | 979dc247e9c296afe189c491f44121c9dbd204b2 /user_guide | |
parent | 3fc979dd87dbda346c0f8b7da78de15b6d84c64d (diff) |
Diffstat (limited to 'user_guide')
-rw-r--r-- | user_guide/changelog.html | 11 | ||||
-rw-r--r-- | user_guide/images/appflowchart.gif | bin | 25273 -> 25276 bytes | |||
-rw-r--r-- | user_guide/libraries/image_lib.html | 2 | ||||
-rw-r--r-- | user_guide/libraries/loader.html | 2 | ||||
-rw-r--r-- | user_guide/license.html | 2 |
5 files changed, 14 insertions, 3 deletions
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 <h1>Change Log</h1>
+<h2>Version 1.5.0.1</h2>
+<p>Release Date: October 31, 2006</p>
+<ul>
+<li>Fixed a problem in which duplicate attempts to load helpers and classes were not being stopped.</li>
+<li>Fixed a bug in the word_wrap() helper function.</li>
+<li>Fixed an invalid color Hex number in the Profiler class.</li>
+<li>Fixed a corrupted image in the user guide.</li>
+</ul>
+
+
<h2>Version 1.5.0</h2>
<p>Release Date: October 30, 2006</p>
@@ -104,6 +114,7 @@ Change Log <li>Fixed a bug that caused CI to stop working when the PHP magic __get() or __set() functions were used within models or controllers.</li>
<li>Fixed a pagination bug that was permitting negative values in the URL.</li>
<li>Fixed an oversight in which the Loader class was not allowed to be exteneded.</li>
+<li>Changed <dfn>_get_config()</dfn> to <dfn>get_config()</dfn> since the function is not a private one.</li>
<li><strong>Deprecated "init" folder</strong>. Initialization happens automatically now. <a href="creating_libraries.html">Please see documentation</a>.</li>
<li><strong>Deprecated</strong> $this->db->field_names() USE $this->db->list_fields()</li>
<li><strong>Deprecated</strong> the <dfn>$config['log_errors']</dfn> item from the config.php file. Instead, <dfn>$config['log_threshold']</dfn> can be set to "0" to turn it off.</li>
diff --git a/user_guide/images/appflowchart.gif b/user_guide/images/appflowchart.gif Binary files differindex 5ca1ade4c..422332c9e 100644 --- a/user_guide/images/appflowchart.gif +++ b/user_guide/images/appflowchart.gif 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;<br /> $config['width'] = 75;<br />
$config['height'] = 50;<br />
<br />
-$this->image_lib->initialize($config);
+$this->load->library('image_lib', $config);
<br />
<br />
$this->image_lib->resize();</code>
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 <p>This function is used to load your View files. If you haven't read the <a href="../general/views.html">Views</a> section of the
user guide it is recommended that you do since it shows you how this function is typically used.</p>
-<p>The first parameter is required. It is the name of the view file you would like to load.</p>
+<p>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 <kbd>.php</kbd>.</p>
<p>The second <strong>optional</strong> parameter can take
an associative array or an object as input, which it runs through the PHP <a href="http://www.php.net/extract">extract</a> 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: <a href="general/requirements.html">Server Requiremen ·
<a href="#top">Top of Page</a> ·
<a href="index.html">User Guide Home</a> ·
-Next Topic: <a href="general/changelog.html">Change Log</a>
+Next Topic: <a href="changelog.html">Change Log</a>
<p>
<p><a href="http://www.codeigniter.com">Code Igniter</a> · Copyright © 2006 · <a href="http://www.pmachine.com">pMachine, Inc.</a></p>
|