Skip to content

Commit

Permalink
Fix bug with missing closing paren.
Browse files Browse the repository at this point in the history
  • Loading branch information
raamdev committed Oct 28, 2015
1 parent 28bbe8b commit f4b1b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comment-mail-pro/includes/classes/utils-url.php
Original file line number Diff line number Diff line change
Expand Up @@ -1196,7 +1196,7 @@ public function sub_confirm_url($sub_key, $pls = FALSE, $scheme = NULL)
$sub_key = !isset($sub_key[0]) ? '0' : $sub_key;

$url = home_url('/', $scheme);
$args = array(__NAMESPACE__ => array('confirm' => $sub_key.($pls ? '.pls' : ''));
$args = array(__NAMESPACE__ => array('confirm' => $sub_key.($pls ? '.pls' : '')));

return add_query_arg(urlencode_deep($args), $url);
}
Expand Down

0 comments on commit f4b1b42

Please sign in to comment.