Fix #83 where multiple libraries could not be loaded at once by passing an array to the load->library() function.
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index 58fd780..df28207 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -187,6 +187,7 @@
<li>Fixed a bug in the Email library where CC and BCC recipients were not reset when using the clear() method (#109).</li>
<li>Fixed a bug in the URL Helper where prep_url() could cause a PHP error on PHP versions < 5.1.2.</li>
<li>Added a log message in core/output if the cache directory config value was not found.</li>
+ <li>Fixed a bug where multiple libraries could not be loaded by passing an array to load->library()</li>
</ul>
<h2>Version 1.7.2</h2>
diff --git a/user_guide/general/libraries.html b/user_guide/general/libraries.html
index cd83da7..4d6064f 100644
--- a/user_guide/general/libraries.html
+++ b/user_guide/general/libraries.html
@@ -69,6 +69,10 @@
<p>Once initialized you can use it as indicated in the user guide page corresponding to that class.</p>
+<p>Additionally, multiple libraries can be loaded at the same time by passing an array of libraries to the load function.</p>
+
+<code>$this->load->library(array('<var>email</var>', '<var>table</var>'));</code>
+
<h2>Creating Your Own Libraries</h2>
<p>Please read the section of the user guide that discusses how to <a href="creating_libraries.html">create your own libraries</a></p>