=== modified file 'shipping/uc_quote/uc_quote.module'
--- shipping/uc_quote/uc_quote.module	2009-03-25 13:14:13 +0000
+++ shipping/uc_quote/uc_quote.module	2009-03-31 13:54:40 +0000
@@ -415,8 +415,10 @@
  * Implementation of Ubercart's hook_cart_pane.
  */
 function uc_quote_cart_pane($items) {
-  if (!variable_get('uc_cap_quotes_enabled', FALSE) || (variable_get('uc_cart_delivery_not_shippable', TRUE) && !uc_cart_is_shippable())) {
-    return array();
+  if (arg(0) == 'cart') {
+    if (!variable_get('uc_cap_quotes_enabled', FALSE) || (variable_get('uc_cart_delivery_not_shippable', TRUE) && !uc_cart_is_shippable())) {
+      return array();
+    }
   }
   $panes[] = array('id' => 'quotes',
     'title' => t('Shipping quotes'),

