Changeset 3264336
- Timestamp:
- 03/31/2025 09:19:25 AM (12 months ago)
- Location:
- theatre/trunk
- Files:
-
- 4 edited
-
css/admin.css (modified) (1 diff)
-
functions/wpt_event_editor.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
theater.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
theatre/trunk/css/admin.css
r2373144 r3264336 790 790 margin: 0; 791 791 } 792 /*# sourceMappingURL=admin.css.map */ -
theatre/trunk/functions/wpt_event_editor.php
r2360340 r3264336 106 106 * 107 107 * @since 0.11 108 * @since 0.18.8 Added an additional check to make sure the current user is allowed to delete the event. 108 109 */ 109 110 public function delete_event_over_ajax() { … … 118 119 } 119 120 121 // Ensure the current user has the capability to delete the post. 122 if ( ! current_user_can( 'delete_post', $event_id ) ) { 123 wp_die( __( 'You are not allowed to delete this date.', 'theatre' ) ); 124 } 125 120 126 $event = new WPT_Event( $event_id ); 121 127 $production = $event->production(); -
theatre/trunk/readme.txt
r3193083 r3264336 307 307 == Upgrade Notice == 308 308 309 = 0.18.8 = 310 Security update and CSS improvements. 311 309 312 = 0.18.7 = 310 313 Security update. -
theatre/trunk/theater.php
r3193083 r3264336 6 6 Description: Manage and publish events for your theater, live venue, cinema, club or festival. 7 7 Author: Jeroen Schmit 8 Version: 0.18. 78 Version: 0.18.8 9 9 Author URI: http://slimndap.com/ 10 10 Text Domain: theatre … … 29 29 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly 30 30 31 $wpt_version = '0.18. 7';31 $wpt_version = '0.18.8'; 32 32 33 33 class WP_Theatre {
Note: See TracChangeset
for help on using the changeset viewer.