Skip to content

Commit

Permalink
KUN-3274 Show full path to file in form export (#2118)
Browse files Browse the repository at this point in the history
  • Loading branch information
waaghals authored and Devolicious committed Sep 12, 2018
1 parent 31d0cbb commit cadd37d
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -63,6 +63,10 @@ class FileFormSubmissionField extends FormSubmissionField
*/
public function __toString()
{
if (!empty($this->url)) {
return $this->url;
}

return !empty($this->fileName) ? $this->fileName : "";
}

Expand Down

0 comments on commit cadd37d

Please sign in to comment.