Skip to content

Commit

Permalink
Merge pull request woocommerce#18243 from iamchetanp/patch-1
Browse files Browse the repository at this point in the history
Remove space before comma in function call
  • Loading branch information
claudiulodro committed Dec 20, 2017
2 parents 6766ba2 + 325cbf4 commit 0c29a30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/auth/form-grant-access.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@

<?php do_action( 'woocommerce_auth_page_header' ); ?>

<h1><?php printf( __( '%s would like to connect to your store' , 'woocommerce' ), esc_html( $app_name ) ); ?></h1>
<h1><?php printf( __( '%s would like to connect to your store', 'woocommerce' ), esc_html( $app_name ) ); ?></h1>

<?php wc_print_notices(); ?>

<p><?php printf( __( 'This will give "%1$s" %2$s access which will allow it to:' , 'woocommerce' ), '<strong>' . esc_html( $app_name ) . '</strong>', '<strong>' . esc_html( $scope ) . '</strong>' ); ?></p>
<p><?php printf( __( 'This will give "%1$s" %2$s access which will allow it to:', 'woocommerce' ), '<strong>' . esc_html( $app_name ) . '</strong>', '<strong>' . esc_html( $scope ) . '</strong>' ); ?></p>

<ul class="wc-auth-permissions">
<?php foreach ( $permissions as $permission ) : ?>
Expand Down

0 comments on commit 0c29a30

Please sign in to comment.