From: Steve Sutton Date: Mon, 27 Mar 2017 13:01:25 +0000 (-0400) Subject: Correct return for the ticket url X-Git-Tag: v1.0.0^2~22 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=922c941e995033bb6bcc31450dfa077bfb78edd6;p=WP-Themes%2Fmackinawferry.git Correct return for the ticket url update both image and other link for tickets --- diff --git a/front-page.php b/front-page.php index 547ef4b..7131679 100644 --- a/front-page.php +++ b/front-page.php @@ -28,7 +28,7 @@
diff --git a/functions.php b/functions.php index 9bf7e46..1b2027b 100644 --- a/functions.php +++ b/functions.php @@ -210,7 +210,7 @@ if (!function_exists('ticket_url_base')) { if ( defined('GLM_MEMBERS_APIS_STARLINE_OPTION_NAME') ) { $starlineOptions = unserialize( get_option( GLM_MEMBERS_APIS_STARLINE_OPTION_NAME ) ); $starlineUrl = ( isset( $starlineOptions['ticketUrl'] ) ) ? $starlineOptions['ticketUrl'] : ''; - return $startlineUrl; + return $starlineUrl; } else { return false; }