Skip to content

Commit

Permalink
rename filters
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidAnderson684 committed Mar 28, 2024
1 parent 7d5e2cd commit 8667424
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions class-udm-updater.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
if (!class_exists('Updraft_Manager_Updater_1_9')):
class Updraft_Manager_Updater_1_9 {

public $version = '1.9.1';
public $version = '1.9.2';

public $relative_plugin_file;
public $slug;
Expand Down Expand Up @@ -720,7 +720,7 @@ protected function print_plugin_connector_box() {
<div style="margin: 10px; min-height: 36px;" class="udmupdater_box_<?php echo esc_attr($this->slug);?>">
<?php if ($this->is_connected()) { ?>
<div style="float: left; margin-right: 14px; margin-top: 4px;">
<em><?php echo apply_filters('udmupdater_entercustomerlogin', sprintf(__('You are connected to receive updates for %s (login: %s)', 'udmupdater'), $plugin_label, htmlspecialchars($email)), $this->get_plugin_data(), $this->slug); ?></em>:
<em><?php echo apply_filters('udmupdater_you_are_connected', sprintf(__('You are connected to receive updates for %s (login: %s)', 'udmupdater'), $plugin_label, htmlspecialchars($email)), $this->get_plugin_data(), $this->slug); ?></em>:
</div>
<div class="udmupdater_userpassform udmupdater_userpassform_<?php echo esc_attr($this->slug);?>" style="float:left;">
<button class="button button-primary udmupdater-disconnect"><?php _e('Disconnect', 'udmupdater');?></button>
Expand All @@ -741,7 +741,7 @@ protected function print_plugin_connector_box() {
?>
<div class="udmupdater_autoupdate" style="clear:left;">
<input type="checkbox" id="<?php echo esc_attr($checkbox_id);?>" <?php if ($this->is_automatic_updating_enabled()) echo 'checked="checked"';?>>
<label for="<?php echo esc_attr($checkbox_id);?>"><?php echo apply_filters('udmupdater_entercustomerlogin', __('Automatically update as soon as an update becomes available (N.B. other plugins can over-ride this setting).', 'udmupdater'), $this->slug);?></label>
<label for="<?php echo esc_attr($checkbox_id);?>"><?php echo apply_filters('udmupdater_automatically_update_when_available', __('Automatically update as soon as an update becomes available (N.B. other plugins can over-ride this setting).', 'udmupdater'), $this->slug);?></label>
</div>
<?php } ?>
</div>
Expand Down

0 comments on commit 8667424

Please sign in to comment.