diff options
author | admin <devnull@localhost> | 2006-09-24 19:58:27 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-24 19:58:27 +0200 |
commit | 5808346898ec9c602893fc54540958a8c556be29 (patch) | |
tree | 2262ca12979e40dcd5cec8be5314b391571feb1d /user_guide/general/models.html | |
parent | 9659273ba7de6b73c3f188a174e526e692071f43 (diff) |
Diffstat (limited to 'user_guide/general/models.html')
-rw-r--r-- | user_guide/general/models.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/general/models.html b/user_guide/general/models.html index 26b85f67b..71f68bd5c 100644 --- a/user_guide/general/models.html +++ b/user_guide/general/models.html @@ -122,7 +122,7 @@ class Blogmodel extends Model {<br /> <br />
}</code>
-<p>Note: The functions in the above example use the <a href="../libraries/database/active_record.html">Active Record</a> database functions.</p>
+<p>Note: The functions in the above example use the <a href="../database/active_record.html">Active Record</a> database functions.</p>
<a name="anatomy"></a>
@@ -207,7 +207,7 @@ class Blog_controller extends Controller {<br /> <p>When a model is loaded it does <strong>NOT</strong> connect automatically to your database. The following options for connecting are available to you:</p>
<ul>
-<li>You can connect using the standard database methods <a href="../libraries/database/connecting.html">described here</a>, either from within your Controller class or your Model class.</li>
+<li>You can connect using the standard database methods <a href="../database/connecting.html">described here</a>, either from within your Controller class or your Model class.</li>
<li>You can tell the model loading function to auto-connect by passing <kbd>TRUE</kbd> (boolean) via the third parameter,
and connectivity settings, as defined in your database config file will be used:
|