* bug: fix error of calling undefined property uid from the form data.

This commit is contained in:
liugang
2023-05-19 13:22:03 +08:00
parent 92622a21db
commit f79741aecf
+1 -1
View File
@@ -1651,7 +1651,7 @@ class bugZen extends bug
->join('openedBuild', ',')
->get();
return $this->loadModel('file')->processImgURL($bug, $this->config->bug->editor->activate['id'], $formData->get('uid'));
return $this->loadModel('file')->processImgURL($bug, $this->config->bug->editor->activate['id'], $this->post->uid);
}
/**