Skip to content

Commit

Permalink
Fixed an issue where a statement would be printed when no UTM variabl…
Browse files Browse the repository at this point in the history
…es were found in the URL. Reported by @Jariell. This fixes #73
  • Loading branch information
cdevroe committed Dec 3, 2014
1 parent 9671980 commit a58a74c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/core/Plain_Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ protected function addMark($data=array())
// If utm_ is found, convert to array
// Notice the _... so that words with utm do not get included
if ( strpos($url_query_parameters,'utm_') === false ) {
echo '<br>No utm_ found.<br>';
// Whoops! echo '<br>No utm_ found.<br>';
} else {

parse_str($url_query_parameters,$url_query_parameters); // convert querystring to array
Expand Down

0 comments on commit a58a74c

Please sign in to comment.