From c4ab0ccdcf381859c66a0a6700a2cae4c6f1efe1 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Wed, 22 Mar 2017 08:17:55 -0400 Subject: [PATCH] removing stray echo statement from the functions file --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index d350b44..97ffb9e 100644 --- a/functions.php +++ b/functions.php @@ -200,7 +200,7 @@ function is_post_type($type){ function starlineUrl(){ // get the url from the api plugin serialized options and replace the http protocol with https using regex $starlineOptions = unserialize( get_option( GLM_MEMBERS_APIS_STARLINE_OPTION_NAME ) ); - $starlineUrl = ( isset( $starlineOptions['ticketUrl'] ) ) ? $starlineOptions['ticketUrl'] : ''; echo $startlineUrl; + $starlineUrl = ( isset( $starlineOptions['ticketUrl'] ) ) ? $starlineOptions['ticketUrl'] : ''; $starlineUrl = preg_replace("/^http:/i", "https:", $starlineUrl); return $starlineUrl; -- 2.17.1