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: