From ce0b3792bac28deb0b00867102904fa8f5bb7011 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Tue, 26 Jun 2018 10:10:46 +1000 Subject: [PATCH] test attributes --- booking.helper.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/booking.helper.inc b/booking.helper.inc index ce2c148..b5b45be 100644 --- a/booking.helper.inc +++ b/booking.helper.inc @@ -1611,6 +1611,7 @@ function _booking_readinggroup_email_listing($node) { global $event; $rows = array(); $header = array("First Name", "Last Name", "Phone Number"); + $attributes = array("border-spacing" => "10px 0;"); //display study session data if enabled if (variable_get('booking_enable_studygroups', 0) == 0) { @@ -1651,7 +1652,7 @@ function _booking_readinggroup_email_listing($node) { } if(variable_get('booking_enable_html_mail', 0) == 1) { - $table = theme('table', array('header' => $header, 'rows' => $rows)); + $table = theme('table', array('header' => $header, 'rows' => $rows, 'attributes' => $attributes)); watchdog('booking_debug', "
Reading group table\n@info
", array('@info' => print_r($table, true))); return $table; }