Plugin Directory

Changeset 2693675


Ignore:
Timestamp:
03/14/2022 01:56:46 PM (4 years ago)
Author:
brewlabs
Message:

release sync list fix

Location:
sendpress/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • sendpress/trunk/classes/class-sendpress-ajax-loader.php

    r2509704 r2693675  
    392392                                                                            'lastname'  => $user->last_name
    393393            ) );
    394             $email_list[] = $email;
     394            $email_list[] = esc_sql($email);
    395395        }
    396396        SendPress_Data::sync_emails_to_list( $listid, $email_list );
  • sendpress/trunk/classes/views/class-sendpress-view-settings-advanced.php

    r1737419 r2693675  
    217217                    <p><?php _e('Please take care when changing these settings. We have attempted to set these to work on almost all servers. If you have a faster server you may be able to increase the limits below or if you are having troubles you may need to decrease the settings','sendpress'); ?>.</p>
    218218                    <hr>
    219                     <?php _e('Users to Sync per ajax call','sendpress'); ?>: <?php $this->select('sync-per-call',SendPress_Option::get('sync-per-call',250) ); ?> <?php _e('Default','sendpress'); ?>: 250
     219                    <?php _e('Users to Sync per ajax call','sendpress'); ?>: <?php $this->select('sync-per-call',SendPress_Option::get('sync-per-call',250) ,array(1,5,10,15,25,30,35,40,45,50,100,250) ); ?> <?php _e('Default','sendpress'); ?>: 250
    220220                    <hr>
    221221                    <?php _e('Emails sent per AutoCron execution','sendpress'); ?>: <?php $this->select('autocron-per-call',SendPress_Option::get('autocron-per-call',25), array(1,5,10,15,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100) ); ?> <?php _e('Default','sendpress'); ?>: 25<br>
  • sendpress/trunk/codemirror/package.json

    r1598832 r2693675  
    88    "directories": {"lib": "./lib"},
    99    "scripts": {"test": "node ./test/run.js"},
    10     "devDependencies": {"node-static": "0.6.0",
    11                         "phantomjs": "1.9.2-5"},
    1210    "bugs": "http://github.com/marijnh/CodeMirror/issues",
    1311    "keywords": ["JavaScript", "CodeMirror", "Editor"],
  • sendpress/trunk/readme.txt

    r2681564 r2693675  
    55Requires at least: 4.4
    66Tested up to: 5.9
    7 Stable tag: 1.22.2.18
     7Stable tag: 1.22.3.14
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    118118
    119119Previous releases can be downloaded from [GitHub](https://github.com/brewlabs/sendpress/releases)
     120= 1.22.3.14- 2022.3.14 =
     121* Bug fix list sync not syncing all users
     122
    120123= 1.22.2.18- 2022.2.18 =
    121124* Bug fix for editor not saving content when editing emails
  • sendpress/trunk/sendpress.php

    r2681564 r2693675  
    22/*
    33Plugin Name: SendPress Newsletters
    4 Version: 1.22.2.18
     4Version: 1.22.3.14
    55Plugin URI: https://sendpress.com
    66Description: Easy to manage Newsletters for WordPress.
     
    2020define( 'SENDPRESS_API_VERSION', 1 );
    2121define( 'SENDPRESS_MINIMUM_WP_VERSION', '3.6' );
    22 define( 'SENDPRESS_VERSION', '1.22.2.18' );
     22define( 'SENDPRESS_VERSION', '1.22.3.14' );
    2323define( 'SENDPRESS_URL', plugin_dir_url( __FILE__ ) );
    2424define( 'SENDPRESS_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.