In hotel_booking.module in room_search/% menu callback function you shouldn't print the output but rather return it.

print theme('page', $content);
should be replaced with:
return t($content);

This will allow other modules to alter the output if needed.

Comments

willvincent’s picture

Status: Active » Closed (fixed)

It is this way presently due to time constraints requiring less than ideal coding...

This will ultimately be changed to use theme functions and template files.