decache(); $qry = 'UPDATE local_group set nickname = "'.$nickname.'" where group_id = ' . $this->group_id; $result = $this->query($qry); if ($result) { $this->nickname = $nickname; $this->fixupTimestamps(); $this->encache(); } else { common_log_db_error($local, 'UPDATE', __FILE__); // TRANS: Server exception thrown when updating a local group fails. throw new ServerException(_('Could not update local group.')); } return $result; } }