Skip to content
This repository has been archived by the owner on Jan 28, 2019. It is now read-only.

Commit

Permalink
Fix theme check
Browse files Browse the repository at this point in the history
  • Loading branch information
rodica-andronache committed Nov 9, 2017
1 parent e63cfef commit 6b8a259
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion functions.php
Expand Up @@ -737,7 +737,11 @@ function parallax_one_customize_register_notification( $wp_customize ) {
)
)
);
$wp_customize->add_setting( 'parallax-one-notify' );
$wp_customize->add_setting(
'parallax-one-notify', array(
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control(
'parallax-one-notify', array(
'label' => __( 'Notification', 'parallax-one' ),
Expand Down

0 comments on commit 6b8a259

Please sign in to comment.