From 813de3355cd8b7e44ebbf9ab99693c59da2b7987 Mon Sep 17 00:00:00 2001 From: Marek Isalski Date: Tue, 5 Feb 2019 16:24:11 +0000 Subject: [PATCH] warning hidden --- fulcrm_shoppingcart.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fulcrm_shoppingcart.module b/fulcrm_shoppingcart.module index 0be2c3c..9dc276d 100644 --- a/fulcrm_shoppingcart.module +++ b/fulcrm_shoppingcart.module @@ -456,7 +456,7 @@ function _fulcrm_shoppingcart_buy_eventbookingtype_create_shoppingitem( &$form_s drupal_set_message( t('There was a problem adding your item to the shopping cart.'), 'error' ); } } else { - drupal_set_message( t('Cannot find your record\'s UUID. This order might have problems...'), 'error' ); + /* drupal_set_message( t('Cannot find your record\'s UUID. This order might have problems...'), 'error' ); */ } } @@ -861,7 +861,7 @@ function fulcrm_shoppingcart_buy_donation_form( $form, &$form_state, $person, $p ); $form[ 'donation_amount' ] = array( '#type' => 'textfield', - '#title' => 'Donation Amount (' . $product[ '_price' ][ 'currency' ] . ')', + '#title' => 'Amount (' . $product[ '_price' ][ 'currency' ] . ')', '#default_value' => sprintf( "%.2f", $product[ '_price' ][ 'item_net' ] ), );