[Kevin Worth]
| <dtml-var expr="_.whrandom.choice(objectValues('Photo'))">
| <dtml-if caption><dtml-var caption></dtml-if>
[,..]
| What am I missing here?
Maybe this will work:
	<dtml-let random_image="_.whrandom.choice(objectValues('Photo'))">
		<dtml-var random_image>
		<dtml-if caption><dtml-var caption></dtml-if>
	</dtml-let>
HTH.
-Morten