From 3ef868a0e945d0c239dd36032d22d0f67a5ee4b3 Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Sun, 16 Mar 2008 21:06:13 +0000 Subject: [PATCH] --- .../webapp/WEB-INF/flows/booking/reviewBooking.xhtml | 10 +++++----- .../webapp/WEB-INF/flows/booking/reviewBooking.jsp | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/spring-webflow-samples/booking-faces/src/main/webapp/WEB-INF/flows/booking/reviewBooking.xhtml b/spring-webflow-samples/booking-faces/src/main/webapp/WEB-INF/flows/booking/reviewBooking.xhtml index 43c7ef27..c224fcd6 100755 --- a/spring-webflow-samples/booking-faces/src/main/webapp/WEB-INF/flows/booking/reviewBooking.xhtml +++ b/spring-webflow-samples/booking-faces/src/main/webapp/WEB-INF/flows/booking/reviewBooking.xhtml @@ -17,23 +17,23 @@
Name:
-
#{hotel.name}
+
#{booking.hotel.name}
Address:
-
#{hotel.address}
+
#{booking.hotel.address}
City, State:
-
#{hotel.city}, #{hotel.state}
+
#{booking.hotel.city}, #{booking.hotel.state}
Zip:
-
#{hotel.zip}
+
#{booking.hotel.zip}
Country:
-
#{hotel.country}
+
#{booking.hotel.country}
Total payment:
diff --git a/spring-webflow-samples/booking-mvc/src/main/webapp/WEB-INF/flows/booking/reviewBooking.jsp b/spring-webflow-samples/booking-mvc/src/main/webapp/WEB-INF/flows/booking/reviewBooking.jsp index 2c2b1470..e20be7f9 100755 --- a/spring-webflow-samples/booking-mvc/src/main/webapp/WEB-INF/flows/booking/reviewBooking.jsp +++ b/spring-webflow-samples/booking-mvc/src/main/webapp/WEB-INF/flows/booking/reviewBooking.jsp @@ -15,23 +15,23 @@
Name:
-
${hotel.name}
+
${booking.hotel.name}
Address:
-
${hotel.address}
+
${booking.hotel.address}
City, State:
-
${hotel.city}, ${hotel.state}
+
${booking.hotel.city}, ${booking.hotel.state}
Zip:
-
${hotel.zip}
+
${booking.hotel.zip}
Country:
-
${hotel.country}
+
${booking.hotel.country}
Total payment: