Example #1
0
	public function uploadAttachment($tmpid, $postvar) {
		$attachment = new KunenaForumMessageAttachment();
		$attachment->mesid = $this->id;
		$attachment->userid = $this->userid;
		$success = $attachment->upload($postvar);
		$this->_attachments_add[$tmpid] = $attachment;
		return $success;
	}