From a40e6a9d8af986f4ea4853c6e33a4b6fdf9a07f9 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Fri, 22 Jul 2016 11:58:39 +1000 Subject: [PATCH] more cleanup --- booking.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/booking.module b/booking.module index d09ff1c..5fe758b 100644 --- a/booking.module +++ b/booking.module @@ -943,7 +943,7 @@ function booking_requirements($phase) { if (($library = libraries_detect('stripe')) && !empty($library['installed'])) { // The library is installed. Awesome! $info = libraries_info('stripe'); - watchdog('booking_debug', "
Stripe library check\n@info
", array('@info' => print_r($info, true))); + //watchdog('booking_debug', "
Stripe library check\n@info
", array('@info' => print_r($info, true))); $requirements['booking_stripe_library'] = array( 'title' => $t('Booking Module Libraries'), 'description' => $t('Stripe library is installed.'), @@ -956,7 +956,7 @@ function booking_requirements($phase) { $error_message = $library['error message']; $requirements['booking_stripe_library'] = array( 'title' => $t('Booking Module Libraries'), - 'description' => $t('Stripe payment processor library not installed correctly.'), + 'description' => $t('Stripe payment processor library not installed correctly. Download https://github.com/stripe/stripe-php/archive/master.zip and extract contents into sites/all/libraries/stripe'), 'value' => $error_message, 'severity' => REQUIREMENT_ERROR, );