diff options
author | Evan Prodromou <evan@controlezvous.ca> | 2008-06-22 11:50:28 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlezvous.ca> | 2008-06-22 11:50:28 -0400 |
commit | b19c86bd0065ee3a13ced9be3244d8dc007d2ee6 (patch) | |
tree | 942f786a577f3ab83034bf798512cfdcee4e9970 /classes/Confirm_email.php | |
parent | 695ad02bdbc03150e8f7f5ebf74fa043f16b3257 (diff) |
change Confirm_email to Confirm_address
darcs-hash:20080622155028-34904-4861ffd6927b05c35614b1ce8c51eec73e0bc9ac.gz
Diffstat (limited to 'classes/Confirm_email.php')
-rw-r--r-- | classes/Confirm_email.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/classes/Confirm_email.php b/classes/Confirm_email.php deleted file mode 100644 index 0b13a4669..000000000 --- a/classes/Confirm_email.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php -/** - * Table Definition for confirm_email - */ -require_once 'DB/DataObject.php'; - -class Confirm_email extends DB_DataObject -{ - ###START_AUTOCODE - /* the code below is auto generated do not remove the above tag */ - - public $__table = 'confirm_email'; // table name - public $code; // varchar(32) primary_key not_null - public $user_id; // int(4) not_null - public $email; // varchar(255) not_null - public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP - - /* Static get */ - function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Confirm_email',$k,$v); } - - /* the code above is auto generated do not remove the tag below */ - ###END_AUTOCODE -} |