removing stray echo statement from the functions file
authorAnthony Talarico <talarico@gaslightmedia.com>
Wed, 22 Mar 2017 12:17:55 +0000 (08:17 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Wed, 22 Mar 2017 12:17:55 +0000 (08:17 -0400)
functions.php

index d350b44..97ffb9e 100644 (file)
@@ -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;