Changeset 2587389
- Timestamp:
- 08/23/2021 10:49:41 PM (5 years ago)
- Location:
- event-scheduler/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
README_DE.txt (modified) (2 diffs)
-
event-scheduler.php (modified) (2 diffs)
-
includes/Div.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
event-scheduler/trunk/README.txt
r2061815 r2587389 4 4 Tags: event, scheduler, planner, planer, sport, participant, mail, notify 5 5 Requires at least: 4 6 Tested up to: 5. 1.17 Stable tag: 1.0. 28 Requires PHP: 5.66 Tested up to: 5.8 7 Stable tag: 1.0.4 8 Requires PHP: 7 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 41 41 == Changelog == 42 42 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 43 49 = 1.0.2 = 44 50 * Fix in the mail notification, wordpress admin mail is now used as sender. -
event-scheduler/trunk/README_DE.txt
r2061815 r2587389 4 4 Tags: event, scheduler, planner, planer, sport, participant, mail, notify 5 5 Requires at least: 4 6 Tested up to: 5. 1.17 Stable tag: 1.0. 28 Requires PHP: 5.66 Tested up to: 5.8 7 Stable tag: 1.0.4 8 Requires PHP: 7 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 39 39 == Changelog == 40 40 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 41 47 = 1.0.2 = 42 48 * Fix in der Benachrichtigungsmail, zudem wird nun die Admin-Mail als Absender verwendet. -
event-scheduler/trunk/event-scheduler.php
r1835806 r2587389 17 17 * Plugin URI: https://github.com/poisl/event-scheduler 18 18 * Description: Event scheduler can be used for planning of recurring events. 19 * Version: 1.0. 219 * Version: 1.0.4 20 20 * Author: Thomas Poisl 21 21 * Author URI: https://profiles.wordpress.org/poisl … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'EVENT_SCHEDULER_VERSION', '1.0. 2' );38 define( 'EVENT_SCHEDULER_VERSION', '1.0.4' ); 39 39 40 40 /** -
event-scheduler/trunk/includes/Div.php
r1819936 r2587389 304 304 public function getWordpressUsers($exclude_user_ids = array()) 305 305 { 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 } 306 310 if (is_plugin_active('wp-members/wp-members.php')) { 307 311 // WP-Members plugin is active, so we only get active users
Note: See TracChangeset
for help on using the changeset viewer.