UserModel::saveAbout PHP 메소드

saveAbout() 공개 메소드

Saves the user's About field.
public saveAbout ( integer $UserID, string $About )
$UserID integer The UserID to save.
$About string The about message being saved.
    public function saveAbout($UserID, $About)
    {
        $About = substr($About, 0, 1000);
        $this->setField($UserID, 'About', $About);
    }
UserModel