We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be173c6 commit eb49dbcCopy full SHA for eb49dbc
views/settings-page.php
@@ -457,9 +457,9 @@ function ( $a ) {
457
<td>
458
<textarea cols="40" rows="5" name="statifyblacklist[ua][blacklist]" id="statify-blacklist_ua"><?php
459
if ( empty( $statifyblacklist_update_result['ua'] ) ) {
460
- print esc_html( implode( "\r\n", StatifyBlacklist::$options['ua']['blacklist'] ) );
+ print esc_html( implode( "\r\n", array_keys( StatifyBlacklist::$options['ua']['blacklist'] ) ) );
461
} else {
462
- print esc_html( implode( "\r\n", $statifyblacklist_update_result['ua']['sanitized'] ) );
+ print esc_html( implode( "\r\n", array_keys( $statifyblacklist_update_result['ua']['sanitized'] ) ) );
463
}
464
?></textarea>
465
0 commit comments