Plugin Directory

Changeset 3202416


Ignore:
Timestamp:
12/04/2024 12:57:59 PM (15 months ago)
Author:
crowdaa
Message:

Version 1.10.6

Location:
crowdaa-sync
Files:
4 edited
43 copied

Legend:

Unmodified
Added
Removed
  • crowdaa-sync/tags/1.10.6/CHANGELOG

    r3197341 r3202416  
    77
    88## [Unreleased]
     9
     10## [1.10.6] - 2024-12-04
     11
     12### Changed
     13
     14- Added parameter to a function for internal use
    915
    1016## [1.10.5] - 2024-11-26
  • crowdaa-sync/tags/1.10.6/README.txt

    r3197341 r3202416  
    66Requires PHP: 7.3
    77Tested up to: 5.9
    8 Stable tag: 1.10.5
     8Stable tag: 1.10.6
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • crowdaa-sync/tags/1.10.6/admin/class-crowdaa-sync-admin-display.php

    r3197341 r3202416  
    2727   * @since    1.0.0
    2828   */
    29   public function database_reset()
    30   {
    31     if (empty($_POST) || empty($_POST['crowdaa_reset']) || !wp_verify_nonce($_POST['crowdaa_reset'], 'crowdaa_reset_data')) {
    32       return;
     29  public function database_reset($force = false)
     30  {
     31    if (!$force) {
     32      if (empty($_POST) || empty($_POST['crowdaa_reset']) || !wp_verify_nonce($_POST['crowdaa_reset'], 'crowdaa_reset_data')) {
     33        return;
     34      }
    3335    }
    3436
  • crowdaa-sync/tags/1.10.6/crowdaa-sync.php

    r3197341 r3202416  
    1414 * Plugin URI:       
    1515 * Description:       Plugin for synchronizing WordPress site and Crowdaa CMS
    16  * Version:           1.10.5
     16 * Version:           1.10.6
    1717 * Requires at least: 5.5
    1818 * Requires PHP:      7.2
     
    3434 * Uses SemVer - https://semver.org
    3535 */
    36 define('CROWDAA_SYNC_VERSION', '1.10.5');
     36define('CROWDAA_SYNC_VERSION', '1.10.6');
    3737define('CROWDAA_SYNC_PLUGIN_DIR', __DIR__);
    3838define('CROWDAA_SYNC_PLUGIN_NAME', 'crowdaa-sync');
  • crowdaa-sync/trunk/CHANGELOG

    r3197341 r3202416  
    77
    88## [Unreleased]
     9
     10## [1.10.6] - 2024-12-04
     11
     12### Changed
     13
     14- Added parameter to a function for internal use
    915
    1016## [1.10.5] - 2024-11-26
  • crowdaa-sync/trunk/README.txt

    r3197341 r3202416  
    66Requires PHP: 7.3
    77Tested up to: 5.9
    8 Stable tag: 1.10.5
     8Stable tag: 1.10.6
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • crowdaa-sync/trunk/admin/class-crowdaa-sync-admin-display.php

    r3197341 r3202416  
    2727   * @since    1.0.0
    2828   */
    29   public function database_reset()
    30   {
    31     if (empty($_POST) || empty($_POST['crowdaa_reset']) || !wp_verify_nonce($_POST['crowdaa_reset'], 'crowdaa_reset_data')) {
    32       return;
     29  public function database_reset($force = false)
     30  {
     31    if (!$force) {
     32      if (empty($_POST) || empty($_POST['crowdaa_reset']) || !wp_verify_nonce($_POST['crowdaa_reset'], 'crowdaa_reset_data')) {
     33        return;
     34      }
    3335    }
    3436
  • crowdaa-sync/trunk/crowdaa-sync.php

    r3197341 r3202416  
    1414 * Plugin URI:       
    1515 * Description:       Plugin for synchronizing WordPress site and Crowdaa CMS
    16  * Version:           1.10.5
     16 * Version:           1.10.6
    1717 * Requires at least: 5.5
    1818 * Requires PHP:      7.2
     
    3434 * Uses SemVer - https://semver.org
    3535 */
    36 define('CROWDAA_SYNC_VERSION', '1.10.5');
     36define('CROWDAA_SYNC_VERSION', '1.10.6');
    3737define('CROWDAA_SYNC_PLUGIN_DIR', __DIR__);
    3838define('CROWDAA_SYNC_PLUGIN_NAME', 'crowdaa-sync');
Note: See TracChangeset for help on using the changeset viewer.