Plugin Directory

Changeset 3270014


Ignore:
Timestamp:
04/09/2025 09:26:17 PM (11 months ago)
Author:
marcusbs
Message:

minor fix

Location:
wp-mailing-group
Files:
95 added
1 edited

Legend:

Unmodified
Added
Removed
  • wp-mailing-group/trunk/mailing-group-module.php

    r3270008 r3270014  
    788788{
    789789    global $wpdb, $objMem, $_POST, $table_name_group;
     790    parse_str($_POST['data'], $_POST);
    790791    $_POST = stripslashes_deep( $_POST );
    791     parse_str($_POST['data'], $parsedData);
    792     $addme = isset($parsedData['addme']) ? absint($parsedData['addme']) : null;
     792    $addme = isset($_POST['addme']) ? absint($_POST['addme']) : null;
    793793    $WPMG_SETTINGS = get_option("WPMG_SETTINGS");
    794794    $plugintype = $WPMG_SETTINGS["MG_PLUGIN_TYPE"];
Note: See TracChangeset for help on using the changeset viewer.