diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-03 19:11:51 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-03 19:11:51 +0000 |
commit | 224e53cbe2ad7c7cfdd72ef66049fa8e708144d3 (patch) | |
tree | b45de85fafc4abc976df3264dfd48d325cfda83d /lib | |
parent | 03e21ae8a7e2f7eda1a34778cf91462b63f2e226 (diff) | |
download | ampache-224e53cbe2ad7c7cfdd72ef66049fa8e708144d3.tar.gz ampache-224e53cbe2ad7c7cfdd72ef66049fa8e708144d3.tar.bz2 ampache-224e53cbe2ad7c7cfdd72ef66049fa8e708144d3.zip |
*cough*
Diffstat (limited to 'lib')
-rw-r--r-- | lib/class/user.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/class/user.class.php b/lib/class/user.class.php index 12c1f328..5a7fc306 100644 --- a/lib/class/user.class.php +++ b/lib/class/user.class.php @@ -36,7 +36,7 @@ class User { var $offset_limit=25; var $email; var $last_seen; - var $reg_date; + var $create_date; var $validation; function User($username=0) { @@ -54,7 +54,7 @@ class User { $this->offset_limit = $info->offset_limit; $this->email = $info->email; $this->last_seen = $info->last_seen; - $this->reg_date = $info->reg_date; + $this->create_date = $info->create_date; $this->validation = $info->validation; $this->set_preferences(); |