UserModel::saveAbout PHP Method

saveAbout() public method

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