Adds missing anchor closing tag

This commit is contained in:
Vlad
2017-04-27 08:41:05 -04:00
parent 586470e8f9
commit 2f1b31aeb2

View File

@ -79,7 +79,7 @@ class ShortcodesHelper {
array( array(
'text' => __('Unsubscribe link', 'mailpoet'), 'text' => __('Unsubscribe link', 'mailpoet'),
'shortcode' => sprintf( 'shortcode' => sprintf(
'<a target="_blank" href="%s">%s', '<a target="_blank" href="%s">%s</a>',
'[link:subscription_unsubscribe_url]', '[link:subscription_unsubscribe_url]',
__('Unsubscribe', 'mailpoet') __('Unsubscribe', 'mailpoet')
) )
@ -87,7 +87,7 @@ class ShortcodesHelper {
array( array(
'text' => __('Edit subscription page link', 'mailpoet'), 'text' => __('Edit subscription page link', 'mailpoet'),
'shortcode' => sprintf( 'shortcode' => sprintf(
'<a target="_blank" href="%s">%s', '<a target="_blank" href="%s">%s</a>',
'[link:subscription_manage_url]', '[link:subscription_manage_url]',
__('Manage subscription', 'mailpoet') __('Manage subscription', 'mailpoet')
) )
@ -95,7 +95,7 @@ class ShortcodesHelper {
array( array(
'text' => __('View in browser link', 'mailpoet'), 'text' => __('View in browser link', 'mailpoet'),
'shortcode' => sprintf( 'shortcode' => sprintf(
'<a target="_blank" href="%s">%s', '<a target="_blank" href="%s">%s</a>',
'[link:newsletter_view_in_browser_url]', '[link:newsletter_view_in_browser_url]',
__('View in your browser', 'mailpoet') __('View in your browser', 'mailpoet')
) )