Skip to content
This repository has been archived by the owner on May 29, 2020. It is now read-only.

Remove dashicon from Enable text in plugins auto-updates column #36

Merged
merged 1 commit into from
Mar 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wp-autoupdates.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function wp_autoupdates_add_plugins_autoupdates_column_content( $column_name, $p
)
);
echo '<p>';
echo '<span class="plugin-autoupdate-enabled"><span class="dashicons dashicons-update" aria-hidden="true"></span> ' . __( 'Enabled', 'wp-autoupdates' ) . '</span>';
echo '<span class="plugin-autoupdate-enabled">' . __( 'Auto-updates enabled', 'wp-autoupdates' ) . '</span>';
echo '<br />';
$next_update_time = wp_next_scheduled( 'wp_version_check' );
$time_to_next_update = human_time_diff( intval( $next_update_time ) );
Expand Down