: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
if( !defined('ABSPATH') ){ exit();}
$xyz_fbap_message = $_GET['msg'];
if($xyz_fbap_message == 1){
<div class="system_notice_area_style1" id="system_notice_area">
<?php _e('Thank you for the suggestion.','facebook-auto-publish'); ?> <span
id="system_notice_area_dismiss"> <?php _e('Dismiss','facebook-auto-publish'); ?> </span>
else if($xyz_fbap_message == 2){
<div class="system_notice_area_style0" id="system_notice_area">
<?php $fbap_wp_mail="wp_mail"; $fbap_wp_mail_msg=sprintf(__('%s not able to process the request.','facebook-auto-publish'),$fbap_wp_mail); echo $fbap_wp_mail_msg; ?> <span
id="system_notice_area_dismiss"> <?php _e('Dismiss','facebook-auto-publish'); ?> </span>
else if($xyz_fbap_message == 3){
<div class="system_notice_area_style0" id="system_notice_area">
<?php _e('Please suggest a feature.','facebook-auto-publish'); ?> <span
id="system_notice_area_dismiss"> <?php _e('Dismiss','facebook-auto-publish'); ?> </span>
if (isset($_POST) && isset($_POST['xyz_send_mail']))
if (! isset( $_REQUEST['_wpnonce'] )|| ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'xyz_fbap_suggest_feature_form_nonce' ))
wp_nonce_ays( 'xyz_fbap_suggest_feature_form_nonce' );
if (isset($_POST['xyz_fbap_suggested_feature']) && $_POST['xyz_fbap_suggested_feature']!='')
$xyz_fbap_feature_content=esc_textarea($_POST['xyz_fbap_suggested_feature']);
$xyz_fbap_sender_email = get_option('admin_email');
$entries0 = $wpdb->get_results( $wpdb->prepare( 'SELECT display_name FROM '.$wpdb->base_prefix.'users WHERE user_email=%s',array($xyz_fbap_sender_email)));
foreach( $entries0 as $entry ) {
$xyz_fbap_admin_username=$entry->display_name;
$xyz_fbap_recv_email='support@xyzscripts.com';
$xyz_fbap_mail_subject="WP2SOCIAL AUTO PUBLISH - FEATURE SUGGESTION";
$xyz_fbap_headers = array('From: '.$xyz_fbap_admin_username.' <'. $xyz_fbap_sender_email .'>' ,'Content-Type: text/html; charset=UTF-8');
$wp_mail_processed=wp_mail( $xyz_fbap_recv_email, $xyz_fbap_mail_subject, $xyz_fbap_feature_content, $xyz_fbap_headers );
if ($wp_mail_processed==true){
header("Location:".admin_url('admin.php?page=facebook-auto-publish-suggest-feature&msg=1'));exit();}
header("Location:".admin_url('admin.php?page=facebook-auto-publish-suggest-feature&msg=2'));exit();}
header("Location:".admin_url('admin.php?page=facebook-auto-publish-suggest-feature&msg=3'));exit();}
<?php wp_nonce_field( 'xyz_fbap_suggest_feature_form_nonce' );?>
<h3> <?php _e('Contribute And Get Rewarded','facebook-auto-publish') ?> </h3>
<span style="color: #1A87B9;font-size:13px;padding-left: 10px;" >* <?php _e('Suggest a feature for this plugin and stand a chance to get a free copy of premium version of this plugin.','facebook-auto-publish'); ?> </span>
<table class="widefat xyz_fbap_widefat_table" style="width:98%;padding-top: 10px;">
<textarea name="xyz_fbap_suggested_feature" id="xyz_fbap_suggested_feature" style="width:620px;height:250px !important;"></textarea>
<td><input name="xyz_send_mail" class="submit_fbap_new" style="color:#FFFFFF;border-radius:4px;border:1px solid #1A87B9; margin-bottom:10px;" type="submit" value="<?php _e('Send Mail To Us','facebook-auto-publish'); ?>">