summaryrefslogtreecommitdiff
path: root/classes/Reply.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-07-09 16:07:11 -0400
committerEvan Prodromou <evan@prodromou.name>2008-07-09 16:07:11 -0400
commit816262d4884d09804a93e1a6974a6b0ecc6660f1 (patch)
treefd26853dd3d5271622d029ffd4ead8645e3f9326 /classes/Reply.php
parent63f1fb4259402bf2b53097d2525878a2f6daa8c4 (diff)
rebuild DB_DataObject classes for new structure
darcs-hash:20080709200711-84dde-b6a9e403ab50ef5a6497a25a756ed63c373f0402.gz
Diffstat (limited to 'classes/Reply.php')
-rw-r--r--classes/Reply.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Reply.php b/classes/Reply.php
index 8b341b1c7..8e26f1684 100644
--- a/classes/Reply.php
+++ b/classes/Reply.php
@@ -12,8 +12,8 @@ class Reply extends DB_DataObject
public $__table = 'reply'; // table name
public $notice_id; // int(4) primary_key not_null
public $profile_id; // int(4) primary_key not_null
- public $replied_id; // int(4)
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
+ public $replied_id; // int(4)
/* Static get */
function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Reply',$k,$v); }