Plugin Directory

Changeset 3264336


Ignore:
Timestamp:
03/31/2025 09:19:25 AM (12 months ago)
Author:
slimndap
Message:

v0.18.8

Location:
theatre/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • theatre/trunk/css/admin.css

    r2373144 r3264336  
    790790  margin: 0;
    791791}
    792 /*# sourceMappingURL=admin.css.map */
  • theatre/trunk/functions/wpt_event_editor.php

    r2360340 r3264336  
    106106     *
    107107     * @since 0.11
     108     * @since 0.18.8    Added an additional check to make sure the current user is allowed to delete the event.
    108109     */
    109110    public function delete_event_over_ajax() {
     
    118119        }
    119120
     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       
    120126        $event = new WPT_Event( $event_id );
    121127        $production = $event->production();
  • theatre/trunk/readme.txt

    r3193083 r3264336  
    307307== Upgrade Notice ==
    308308
     309= 0.18.8 =
     310Security update and CSS improvements.
     311
    309312= 0.18.7 =
    310313Security update.
  • theatre/trunk/theater.php

    r3193083 r3264336  
    66    Description: Manage and publish events for your theater, live venue, cinema, club or festival.
    77    Author: Jeroen Schmit
    8     Version: 0.18.7
     8    Version: 0.18.8
    99    Author URI: http://slimndap.com/
    1010    Text Domain: theatre
     
    2929if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    3030   
    31 $wpt_version = '0.18.7';
     31$wpt_version = '0.18.8';
    3232
    3333class WP_Theatre {
Note: See TracChangeset for help on using the changeset viewer.