summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Database/ActiveRecord.page
diff options
context:
space:
mode:
Diffstat (limited to 'demos/quickstart/protected/pages/Database/ActiveRecord.page')
-rw-r--r--demos/quickstart/protected/pages/Database/ActiveRecord.page4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/quickstart/protected/pages/Database/ActiveRecord.page b/demos/quickstart/protected/pages/Database/ActiveRecord.page
index 017b8d45..e3da53c0 100644
--- a/demos/quickstart/protected/pages/Database/ActiveRecord.page
+++ b/demos/quickstart/protected/pages/Database/ActiveRecord.page
@@ -74,7 +74,7 @@ class UserRecord extends TActiveRecord
public $username; //the column named "username" in the "users" table
public $email;
- private static $_tablename='users'; //table name
+ public static $_tablename='users'; //table name
/**
* @return TActiveRecord active record finder instance
@@ -88,7 +88,7 @@ class UserRecord extends TActiveRecord
</p>
<p>Each property of the <tt>UserRecord</tt> class must correspond to a
column with the same name in the "users" table. The static class variable
- <tt>$_tablename</tt> is optional when the class name is the same as
+ <tt>$_tablename</tt> (must be public) is optional when the class name is the same as
the table name in the database, otherwise <tt>$_tablename</tt> must
specify the table name that corresponds to your Active Record class.
</p>