We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ec5893 commit e398a74Copy full SHA for e398a74
templates/app.php
@@ -70,7 +70,9 @@
70
<tr class="debug-hide">
71
<th scope="row"><?php esc_html_e( 'Redirect URI', 'enable-mastodon-apps' ); ?></th>
72
<td>
73
- <?php echo wp_kses( implode( '<br>', $app->get_redirect_uris() ), array( 'br' => array() ) ); ?>
+ <?php foreach ( $app->get_redirect_uris() as $redirect_uri ) : ?>
74
+ <input type="text" value="<?php echo esc_attr( $redirect_uri ); ?>" readonly onclick="this.select()" class="regular-text" /><br>
75
+ <?php endforeach; ?>
76
<p class="description">
77
<span><?php esc_html_e( 'The URI to redirect to after the user authorizes the app.', 'enable-mastodon-apps' ); ?></span>
78
<span>
0 commit comments