From 26c5d4ef186eec1733084651fc4c5360de9f5dbd Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Tue, 10 Oct 2017 16:48:15 -0400 Subject: [PATCH] remove print_r get rid of debug stuff --- 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 76e6fe7..03be5b2 100644 --- a/models/front/registrations/registration.php +++ b/models/front/registrations/registration.php @@ -242,7 +242,7 @@ $registrant['reg_time'] ) ); - var_dump( $regTimeText ); + // var_dump( $regTimeText ); $registrant['reg_time_text'] = $regTimeText; } $this->wpdb->print_error(); @@ -255,7 +255,7 @@ $registrant['state'] = $accountData['state']; $registrant['zip'] = $accountData['zip']; $registrant['country'] = $accountData['country']; - echo '
$registrant: ' . print_r( $registrant, true ) . '
'; + // echo '
$registrant: ' . print_r( $registrant, true ) . '
'; $registrants[] = $registrant; } } -- 2.17.1