File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -259,6 +259,7 @@ You can hide a row by adding a hook. Checkout this example:
259259= 2.3.9 on May 5, 2025 =
260260
261261* Fixed: PHP notice in WordPress 6.8 caused by initializing product translations too early.
262+ * Fixed: The download URL of an Upload Field with multiple files was not passed through `gfexcel_field_value`.
262263
263264= 2.3.8 on January 27, 2025 =
264265
Original file line number Diff line number Diff line change @@ -81,7 +81,10 @@ public function getRows( ?array $entry = null ): iterable {
8181
8282 foreach ( $ files as $ file ) {
8383 yield $ this ->wrap ( [
84- $ this ->field ->get_download_url ( $ file , $ this ->should_force_download () ),
84+ $ this ->filter_value (
85+ $ this ->field ->get_download_url ( $ file , $ this ->should_force_download () ),
86+ $ entry ?? []
87+ ),
8588 ] );
8689 }
8790 }
You can’t perform that action at this time.
0 commit comments