From: Anthony Talarico Date: Wed, 22 Mar 2017 12:17:55 +0000 (-0400) Subject: removing stray echo statement from the functions file X-Git-Tag: v1.0.0^2~90 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=c4ab0ccdcf381859c66a0a6700a2cae4c6f1efe1;p=WP-Themes%2Fmackinawferry.git removing stray echo statement from the functions file --- 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;