summaryrefslogtreecommitdiffstats
path: root/user_guide/libraries/loader.html
diff options
context:
space:
mode:
Diffstat (limited to 'user_guide/libraries/loader.html')
-rw-r--r--user_guide/libraries/loader.html11
1 files changed, 0 insertions, 11 deletions
diff --git a/user_guide/libraries/loader.html b/user_guide/libraries/loader.html
index 61ed6bff8..c7cf82d40 100644
--- a/user_guide/libraries/loader.html
+++ b/user_guide/libraries/loader.html
@@ -88,17 +88,6 @@ Each library is described in detail in its own page, so please read the informat
<p>Parameters can be passed to the library via an array in the second parameter.
-
-<p>If you would like your libraries assigned to a different variable name then the default you can specify the name in the second parameter:</p>
-
-<code>
-$this->load->library('email', 'E'); // Assigns the email object to "E"<br />
-<br />
-<kbd>$this->E-></kbd><samp><em>some_function</em>()</samp>
-</code>
-
-
-
<h2>$this->load->view('<var>file_name</var>', <samp>$data</samp>, <kbd>true/false</kbd>)</h2>
<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