From ce43396cb7beb49558cd78cf7ef51956a74b8185 Mon Sep 17 00:00:00 2001
From: Greg Aker
Date: Tue, 12 Oct 2010 09:29:35 -0500
Subject: Fix #83 where multiple libraries could not be loaded at once by
passing an array to the load->library() function.
---
user_guide/general/libraries.html | 4 ++++
1 file changed, 4 insertions(+)
(limited to 'user_guide/general/libraries.html')
diff --git a/user_guide/general/libraries.html b/user_guide/general/libraries.html
index cd83da741..4d6064fa9 100644
--- a/user_guide/general/libraries.html
+++ b/user_guide/general/libraries.html
@@ -69,6 +69,10 @@ In most cases, to use one of these classes involves initializing it within a Once initialized you can use it as indicated in the user guide page corresponding to that class.
+Additionally, multiple libraries can be loaded at the same time by passing an array of libraries to the load function.
+
+$this->load->library(array('email', 'table'));
+
Creating Your Own Libraries
Please read the section of the user guide that discusses how to create your own libraries
--
cgit v1.2.3-24-g4f1b