summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--user_guide/database/forge.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/database/forge.html b/user_guide/database/forge.html
index f234b8a1d..7cbaa11a7 100644
--- a/user_guide/database/forge.html
+++ b/user_guide/database/forge.html
@@ -91,7 +91,7 @@ already be running, since the forge class relies on it.</p>
<p>Permits you to create the database specified in the first parameter. Returns TRUE/FALSE based on success or failure:</p>
-<code>if ($this->dbutil->create_database('my_db'))<br />
+<code>if ($this->dbforge->create_database('my_db'))<br />
{<br />
&nbsp;&nbsp;&nbsp; echo 'Database created!';<br />
}</code>
@@ -103,7 +103,7 @@ already be running, since the forge class relies on it.</p>
<p>Permits you to drop the database specified in the first parameter. Returns TRUE/FALSE based on success or failure:</p>
-<code>if ($this->dbutil->drop_database('my_db'))<br />
+<code>if ($this->dbforge->drop_database('my_db'))<br />
{<br />
&nbsp;&nbsp;&nbsp; echo 'Database deleted!';<br />
}</code>