Userguide tweaks to show proper PHP 5 examples and removing the compat helper from the menu.
diff --git a/user_guide/general/creating_libraries.html b/user_guide/general/creating_libraries.html
index 3f0e32c..00d0f4a 100644
--- a/user_guide/general/creating_libraries.html
+++ b/user_guide/general/creating_libraries.html
@@ -141,7 +141,7 @@
<br />
class Someclass {<br />
<br />
- function Someclass($params)<br />
+ function __construct($params)<br />
{<br />
// Do something with $params<br />
}<br />
@@ -248,9 +248,9 @@
<code>
class MY_Email extends CI_Email {<br />
<br />
- function My_Email()<br />
+ function __construct()<br />
{<br />
- parent::CI_Email();<br />
+ parent::__construct();<br />
}<br />
}</code>