diff --git a/system/codeigniter/CodeIgniter.php b/system/codeigniter/CodeIgniter.php
index 3e2b99d..367d5ea 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 c9dc740..26d340b 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -62,6 +62,16 @@
 

 <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 @@
 <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
index 5ca1ade..422332c 100644
--- a/user_guide/images/appflowchart.gif
+++ b/user_guide/images/appflowchart.gif
Binary files differ
diff --git a/user_guide/libraries/image_lib.html b/user_guide/libraries/image_lib.html
index 726f8c9..5b4575b 100644
--- a/user_guide/libraries/image_lib.html
+++ b/user_guide/libraries/image_lib.html
@@ -103,7 +103,7 @@
 $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 c7cf82d..448ba4c 100644
--- a/user_guide/libraries/loader.html
+++ b/user_guide/libraries/loader.html
@@ -93,7 +93,7 @@
 <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. &nbsp;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 a0b6876..3c07c79 100644
--- a/user_guide/license.html
+++ b/user_guide/license.html
@@ -103,7 +103,7 @@
 &nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;

 <a href="#top">Top of Page</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;

 <a href="index.html">User Guide Home</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;

-Next Topic:&nbsp;&nbsp;<a href="general/changelog.html">Change Log</a>

+Next Topic:&nbsp;&nbsp;<a href="changelog.html">Change Log</a>

 <p>

 

 <p><a href="http://www.codeigniter.com">Code Igniter</a> &nbsp;&middot;&nbsp; Copyright &#169; 2006 &nbsp;&middot;&nbsp; <a href="http://www.pmachine.com">pMachine, Inc.</a></p>