Skip to content

Commit

Permalink
TMZ-279 lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mserino committed Jan 21, 2025
1 parent c8e2427 commit 75a42f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ public static function build_viber_link( string $action, string $number ) {
}

return add_query_arg( [
'number' => urlencode( $number ),
'number' => rawurlencode( $number ),
], 'viber://' . $action );
}

Expand Down Expand Up @@ -591,7 +591,7 @@ public function handle_link_classes( $atts, $item, $args, $depth ) {
return $atts;
}

public function handle_sub_menu_classes( $classes ) {
public function handle_sub_menu_classes() {
$submenu_layout = $this->settings['style_submenu_layout'] ?? 'horizontal';
$submenu_shape = $this->settings['style_submenu_shape'];

Expand Down
2 changes: 1 addition & 1 deletion modules/template-parts/widgets/ehp-header.php
Original file line number Diff line number Diff line change
Expand Up @@ -1533,7 +1533,7 @@ protected function add_style_contact_button_section() {
$this->add_control(
'contact_button_hover_animation',
[
'label' => esc_html__( 'Hover Animation', 'elementor' ),
'label' => esc_html__( 'Hover Animation', 'hello-plus' ),
'type' => Controls_Manager::HOVER_ANIMATION,
'frontend_available' => true,
]
Expand Down

0 comments on commit 75a42f6

Please sign in to comment.