From da47eba0b29d274587f23da161c7592d5361960b Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Thu, 2 Nov 2017 10:41:01 -0400 Subject: [PATCH] Comment out print_r statement Remove print_r output for registrants. --- models/front/registrations/registration.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/front/registrations/registration.php b/models/front/registrations/registration.php index d127957..b37fb63 100644 --- a/models/front/registrations/registration.php +++ b/models/front/registrations/registration.php @@ -229,7 +229,7 @@ $registrants = array(); - echo '
$cart: ' . print_r( $cart, true ) . '
'; + // echo '
$cart: ' . print_r( $cart, true ) . '
'; // Looping through to grab out registrants from the cart. if ( isset( $cart['events'] ) && is_array( $cart['events'] ) ) { @@ -316,7 +316,7 @@ } // - End loop through events. } - echo '
$registrants: ' . print_r( $registrants, true ) . '
'; + // echo '
$registrants: ' . print_r( $registrants, true ) . '
'; // Compile template data $templateData = array( -- 2.17.1