--- hotel_booking.module	2010-01-04 00:28:09.000000000 +0000
+++ hotel_bookingNew.module	2010-01-08 14:57:33.000000000 +0000
@@ -599,7 +599,7 @@ function hotel_search_view($args) {
       $content .= '<form action="book_room" method="post"><div>';
       $content .= '<input type="hidden" name="nodeid[]" value="'. $node->nid .'" /></div>';
       $content .= '<h3 class="booking-title">'. $node->title .'</h3>';
-      $content .= '<h3 class="booking-price">$ ' . number_format($total, 2, '.', ',') .'</h3>';
+      $content .= '<h3 class="booking-price">' . uc_currency_format($total, 2) .'</h3>';
        if (variable_get('hotel_booking_search_teaser_body', 'teaser') == 'teaser') {
         $content .= '<div class="hotel-roomdesc">'. check_markup($node->teaser, $node->format, FALSE) ."</div>";
       }
@@ -611,9 +611,9 @@ function hotel_search_view($args) {
       $content .= t('Book This Room') .'" /></div>';
 
       $content .= '<fieldset class="clear collapsible collapsed"><legend><a href="#">'. t('Pricing Details') .'</a></legend>';
-      $content .= '<div class="hotel-total">Room Total:<br />$ '. number_format($total, 2, '.', ',') .'</div>';
-      $content .= '<div class="hotel-perperson-total">Total / Person:<br />$ '. $pp .'</div>';
-      $content .= '<div class="hotel-avgpernight">Avg / Night:<br />$ '. $avg .'</div>';
+      $content .= '<div class="hotel-total">Room Total:<br />'. uc_currency_format($total) .'</div>';
+      $content .= '<div class="hotel-perperson-total">Total / Person:<br />'. uc_currency_format($pp) .'</div>';
+      $content .= '<div class="hotel-avgpernight">Avg / Night:<br />'. uc_currency_format($avg) .'</div>';
       $content .= '<h5 class="clear">'. t('Nightly Breakdown:') .'</h5>';
       $content .= '<div class="hotel-result-days">';
       $content .= '<input type="hidden" name="roomtype" value="'. $node->nid .'" />';
@@ -622,7 +622,7 @@ function hotel_search_view($args) {
       $content .= '<input type="hidden" name="total" value="'. $total .'" />';
 
       for ($z = 0; $z < sizeof($rooms[$rtid]['nights']); $z++) {
-        $content .= '<div class="hotel-result-day">'. date('M j', strtotime("$checkin + $z day")) ."<br />$ " . number_format($rooms[$rtid]['nights'][date("Y-m-d", strtotime("$checkin + $z day"))]['price'], 2, '.', ',');
+        $content .= '<div class="hotel-result-day">'. date('M j', strtotime("$checkin + $z day")) ."<br />" . uc_currency_format($rooms[$rtid]['nights'][date("Y-m-d", strtotime("$checkin + $z day"))]['price']);
         $content .= '<input type="hidden" name="date[]" value="'. date('Y-m-d', strtotime("$checkin + $z day")) .'" />';
         $content .= '<input type="hidden" name="price[]" value="'. number_format($rooms[$rtid]['nights'][date("Y-m-d", strtotime("$checkin + $z day"))]['price'], 2, '.', ',') .'" />';
         $content .= '</div>';
