From df9f6103e4589f68c18a46d05c6723d059d2fee4 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Wed, 4 Dec 2019 09:00:20 -0500 Subject: [PATCH] fix syntax error --- web/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/includes/functions.php b/web/includes/functions.php index bb36718a7..aea0c8b14 100644 --- a/web/includes/functions.php +++ b/web/includes/functions.php @@ -2595,7 +2595,7 @@ function html_radio($name, $values, $selected=null, $options=array(), $attrs=arr ', $name, $value, $label, ($value==$selected?' checked="checked"':''), $attributes_string, (isset($options['id']) ? $options['id'] : ''), - ( ( (!isset($options['inline'])) or $options['inline'] ) ? '-inline' : ''), + ( ( (!isset($options['inline'])) or $options['inline'] ) ? '-inline' : '') ); if ( isset($options['container']) ) { $html .= $options['container'][1];