Moved the <label> output ability from the language library to a language helper (hotfix for 1.6.3)
diff --git a/user_guide/libraries/language.html b/user_guide/libraries/language.html
index b776b7d..4d93cf9 100644
--- a/user_guide/libraries/language.html
+++ b/user_guide/libraries/language.html
@@ -113,12 +113,7 @@
 

 <h3>Using language lines as form labels</h3>

 

-<p>If your application requires it, a language line can automatically be output as a &lt;label&gt; by specifying a second parameter, which will become the "for" attribute of the label.</p>

-

-<code>

-$this->lang->line('<samp>language_key</samp>', '<samp>form_item_id</samp>'); <br />

-// becomes &lt;label for="form_item_id"&gt;language_key&lt;/label&gt;

-</code>

+<p class="important">This feature has been deprecated from the language library and moved to the <kbd>lang()</kbd> function of the <a href="../helpers/language_helper.html">Language helper</a>.</p>

 

 <h2>Auto-loading Languages</h2>

 <p>If you find that you need a particular language globally throughout your application, you can tell CodeIgniter to <a href="../general/autoloader.html">auto-load</a> it during system initialization. This is done by opening the application/config/autoload.php file and adding the language(s) to the autoload array.</p>