Skip to content

Commit

Permalink
Fix warining
Browse files Browse the repository at this point in the history
  • Loading branch information
sumaisa-mou committed Mar 22, 2024
1 parent b096c73 commit 9e81d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/Admin/Notice.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function connect_notice_html() {
<p><?php echo __( 'You are one step closer to use weMail. Connect your site to get started with weMail. With weMail, you can send marketing and transactional emails to your audience.', 'wemail' ); ?></p>
</div>
<div class="wemail-connect-notice-connect-button">
<a class="button" href="<?php echo wemail()->wemail_app . '/connect?email=' . urlencode( wp_get_current_user()->user_email ) . '&site_name=' . urlencode( get_bloginfo( 'name' ) ) . '&site_url=' . urlencode( site_url( '/' ) ) . '&redirect_url=' . urlencode( admin_url( 'admin.php?page=wemail' ) ); ?>">Connect</a>
<a class="button" href="<?php echo wemail()->wemail_app . '/connect?email=' . rawurlencode( wp_get_current_user()->user_email ) . '&site_name=' . rawurlencode( get_bloginfo( 'name' ) ) . '&site_url=' . rawurlencode( site_url( '/' ) ) . '&redirect_url=' . rawurlencode( admin_url( 'admin.php?page=wemail' ) ); ?>">Connect</a>
</div>
</div>
<?php
Expand Down

0 comments on commit 9e81d0f

Please sign in to comment.