Plugin Directory

Changeset 3467013


Ignore:
Timestamp:
02/22/2026 05:39:27 PM (6 weeks ago)
Author:
bargs
Message:
  1. 1.1.1
Location:
simple-event-manager/trunk
Files:
6 added
2 edited

Legend:

Unmodified
Added
Removed
  • simple-event-manager/trunk/readme.txt

    r3466877 r3467013  
    44Requires at least: 5.0
    55Tested up to: 6.9
    6 Stable tag: 1.1.0
     6Stable tag: 1.1.1
    77License: GPL-2.0+
    88License URI: http://www.gnu.org/licenses/gpl-2.0.txt
     
    5151
    5252== Changelog ==
     53
     54= 1.1.1 =
     55* Bugfix
    5356
    5457= 1.1.0 =
  • simple-event-manager/trunk/simple-event-manager.php

    r3466877 r3467013  
    33 * Plugin Name: Simple Event Manager
    44 * Description: Eventmanage-Plugin for Wordpress
    5  * Version: 1.1.0
     5 * Version: 1.1.1
    66 * Author: Webdesign and more - Sebastian Barg
    77 * Author URI: https://webdesign-barg.de
     
    3939}
    4040
     41
     42function simevema_activate_plugin() {
     43    simevema_create_event_post_type();
     44    flush_rewrite_rules();
     45}
     46register_activation_hook( __FILE__, 'simevema_activate_plugin' );
     47
    4148// 3. Deinstallationsabfrage (bleibt in der Hauptdatei)
    4249function simevema_uninstall_plugin() {
Note: See TracChangeset for help on using the changeset viewer.