From 46b3f1c3a746044ae868c06bf3027e0a3ea27433 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 21 May 2008 07:02:53 -0400 Subject: remove validation code darcs-hash:20080521110253-84dde-e8d6f62225bb56f5e08b28b35d23ccfbe56984fd.gz --- classes/Profile.php | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'classes/Profile.php') diff --git a/classes/Profile.php b/classes/Profile.php index 9cb486a48..5a678eb54 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -72,30 +72,4 @@ class Profile extends DB_DataObject return NULL; } } - - function validateNickname() { - return Validate::string($this->nickname, array('min_length' => 1, 'max_length' => 64, - 'format' => VALIDATE_ALPHA_LOWER . VALIDATE_NUM)); - } - - function validateProfileurl() { - return Validate::uri($this->profileurl, array('allowed_schemes' => array('http', 'https'))); - } - - function validateHomepage() { - return (strlen($this->homepage) == 0) || - Validate::uri($this->homepage, array('allowed_schemes' => array('http', 'https'))); - } - - function validateBio() { - return Validate::string($this->bio, array('min_length' => 0, 'max_length' => 140)); - } - - function validateLocation() { - return Validate::string($this->location, array('min_length' => 0, 'max_length' => 255)); - } - - function validateFullname() { - return Validate::string($this->fullname, array('min_length' => 0, 'max_length' => 255)); - } } -- cgit v1.2.3-54-g00ecf