Plugin Directory

Changeset 2587389


Ignore:
Timestamp:
08/23/2021 10:49:41 PM (5 years ago)
Author:
poisl
Message:

1.0.4 updated version compatibility
1.0.3 small fix for event- and memeber-list

Location:
event-scheduler/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • event-scheduler/trunk/README.txt

    r2061815 r2587389  
    44Tags: event, scheduler, planner, planer, sport, participant, mail, notify
    55Requires at least: 4
    6 Tested up to: 5.1.1
    7 Stable tag: 1.0.2
    8 Requires PHP: 5.6
     6Tested up to: 5.8
     7Stable tag: 1.0.4
     8Requires PHP: 7
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4141== Changelog ==
    4242
     43= 1.0.4 =
     44* Updated WordPress and PHP version compatibility.
     45
     46= 1.0.3 =
     47* Fixed an issue that could render the event list and member list unusable.
     48
    4349= 1.0.2 =
    4450* Fix in the mail notification, wordpress admin mail is now used as sender.
  • event-scheduler/trunk/README_DE.txt

    r2061815 r2587389  
    44Tags: event, scheduler, planner, planer, sport, participant, mail, notify
    55Requires at least: 4
    6 Tested up to: 5.1.1
    7 Stable tag: 1.0.2
    8 Requires PHP: 5.6
     6Tested up to: 5.8
     7Stable tag: 1.0.4
     8Requires PHP: 7
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3939== Changelog ==
    4040
     41= 1.0.4 =
     42* Kompabilität mit WordPress und PHP Versionen aktualisiert.
     43
     44= 1.0.3 =
     45* Ein Problem wurde behoben, dass die korrekte Anzeige der Event- und Mitgliederliste verhindert hat.
     46
    4147= 1.0.2 =
    4248* Fix in der Benachrichtigungsmail, zudem wird nun die Admin-Mail als Absender verwendet.
  • event-scheduler/trunk/event-scheduler.php

    r1835806 r2587389  
    1717 * Plugin URI:        https://github.com/poisl/event-scheduler
    1818 * Description:       Event scheduler can be used for planning of recurring events.
    19  * Version:           1.0.2
     19 * Version:           1.0.4
    2020 * Author:            Thomas Poisl
    2121 * Author URI:        https://profiles.wordpress.org/poisl
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'EVENT_SCHEDULER_VERSION', '1.0.2' );
     38define( 'EVENT_SCHEDULER_VERSION', '1.0.4' );
    3939
    4040/**
  • event-scheduler/trunk/includes/Div.php

    r1819936 r2587389  
    304304    public function getWordpressUsers($exclude_user_ids = array())
    305305    {
     306        // Include file if function does not exist
     307        if (!function_exists('is_plugin_active')) {
     308            include_once(ABSPATH . 'wp-admin/includes/plugin.php');
     309        }
    306310        if (is_plugin_active('wp-members/wp-members.php')) {
    307311            // WP-Members plugin is active, so we only get active users
Note: See TracChangeset for help on using the changeset viewer.