From 922c941e995033bb6bcc31450dfa077bfb78edd6 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Mon, 27 Mar 2017 09:01:25 -0400 Subject: [PATCH] Correct return for the ticket url update both image and other link for tickets --- front-page.php | 2 +- functions.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.17.1