Fix venue address in events

This commit is contained in:
Nabil Kadimi
2020-03-26 18:12:25 +01:00
committed by GitHub
parent c66f308a1f
commit 9b70fb3d13

View File

@@ -47,7 +47,7 @@ foreach( $venues as $venue ):
</tr> </tr>
<?php if ( $address != null ) { ?> <?php if ( $address != null ) { ?>
<tr class="sp-event-venue-address-row"> <tr class="sp-event-venue-address-row">
<td><?php echo $address; ?></td> <td><?php echo urldecode( $address ); ?></td>
</tr> </tr>
<?php } ?> <?php } ?>
</tbody> </tbody>
@@ -56,4 +56,4 @@ foreach( $venues as $venue ):
</div> </div>
<?php <?php
endforeach; endforeach;
?> ?>