Plugin Directory

Changeset 3216040


Ignore:
Timestamp:
01/02/2025 03:07:30 PM (14 months ago)
Author:
marcbelletre
Message:

Fix end date issue

Location:
acf-rrule-field
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • acf-rrule-field/tags/1.5.3/acf-rrule.php

    r3195087 r3216040  
    55Plugin URI: https://github.com/marcbelletre/acf-rrule
    66Description: Create recurring rules with a single ACF field
    7 Version: 1.5.2
     7Version: 1.5.3
    88Author: Marc Bellêtre
    99Author URI: https://pixelparfait.fr
     
    4545            // - these will be passed into the field class.
    4646            $this->settings = [
    47                 'version' => '1.5.2',
     47                'version' => '1.5.3',
    4848                'url' => plugin_dir_url(__FILE__),
    4949                'path' => plugin_dir_path(__FILE__),
  • acf-rrule-field/tags/1.5.3/fields/class-acf-field-rrule.php

    r3195087 r3216040  
    506506                            $end_date->setTime(0, 0, 0);
    507507
     508                            $rule->setUntil($end_date);
    508509                            $rule->setEndDate($end_date);
    509510                        }
  • acf-rrule-field/tags/1.5.3/readme.txt

    r3195087 r3216040  
    33Tags: acf, rrule, recurrence, date, calendar
    44Requires at least: 4.7
    5 Tested up to: 6.4
     5Tested up to: 6.7
    66Requires PHP: 7.2
    7 Stable tag: 1.5.2
     7Stable tag: 1.5.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3131
    3232== Changelog ==
     33
     34= 1.5.3 =
     35* Fix issue with end date
    3336
    3437= 1.5.2 =
  • acf-rrule-field/trunk/acf-rrule.php

    r3195087 r3216040  
    55Plugin URI: https://github.com/marcbelletre/acf-rrule
    66Description: Create recurring rules with a single ACF field
    7 Version: 1.5.2
     7Version: 1.5.3
    88Author: Marc Bellêtre
    99Author URI: https://pixelparfait.fr
     
    4545            // - these will be passed into the field class.
    4646            $this->settings = [
    47                 'version' => '1.5.2',
     47                'version' => '1.5.3',
    4848                'url' => plugin_dir_url(__FILE__),
    4949                'path' => plugin_dir_path(__FILE__),
  • acf-rrule-field/trunk/fields/class-acf-field-rrule.php

    r3195087 r3216040  
    506506                            $end_date->setTime(0, 0, 0);
    507507
     508                            $rule->setUntil($end_date);
    508509                            $rule->setEndDate($end_date);
    509510                        }
  • acf-rrule-field/trunk/readme.txt

    r3195087 r3216040  
    33Tags: acf, rrule, recurrence, date, calendar
    44Requires at least: 4.7
    5 Tested up to: 6.4
     5Tested up to: 6.7
    66Requires PHP: 7.2
    7 Stable tag: 1.5.2
     7Stable tag: 1.5.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3131
    3232== Changelog ==
     33
     34= 1.5.3 =
     35* Fix issue with end date
    3336
    3437= 1.5.2 =
Note: See TracChangeset for help on using the changeset viewer.