Plugin Directory

Changeset 3361387


Ignore:
Timestamp:
09/14/2025 07:39:17 PM (6 months ago)
Author:
Alphawolf
Message:

Version 2.5.1 update:

  • FIXED: ArgumentCountError when using Elegant Themes
Location:
admin-management-xtended/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • admin-management-xtended/trunk/admin-management-xtended.php

    r3271896 r3361387  
    22/*
    33Plugin Name: Admin Management Xtended
    4 Version: 2.5.0
     4Version: 2.5.1
    55Plugin URI: https://www.schloebe.de/wordpress/admin-management-xtended-plugin/
    66Description: <strong>WordPress 4.3+ only.</strong> Extends admin functionalities by introducing: toggling post/page visibility inline, changing page order with drag'n'drop, inline category management, inline tag management, changing publication date inline, changing post slug inline, toggling comment status open/closed, hide draft posts, change media order, change media description inline, toggling link visibility, changing link categories
     
    3939 * Define the plugin version
    4040 */
    41 define("AME_VERSION", "2.5.0");
     41define("AME_VERSION", "2.5.1");
    4242
    4343/**
  • admin-management-xtended/trunk/general-functions.php

    r3271896 r3361387  
    99
    1010/*
    11  * Copyright 2008-2024 Oliver Schlöbe (email : scripts@schloebe.de)
     11 * Copyright 2008-2025 Oliver Schlöbe (email : scripts@schloebe.de)
    1212 *
    1313 * This program is free software; you can redistribute it and/or modify
     
    189189    $post = get_post( $postid );
    190190    do_action( 'edit_post', $postid, $post );
    191     do_action( 'save_post', $postid, $post );
     191    do_action( 'save_post', $postid, $post, true );
    192192    die( "jQuery('span#ame_tags" . esc_attr(intval($postid)) . "').fadeOut('fast', function() {
    193193        jQuery('span#ame_tags" . esc_attr(intval($postid)) . "').html('" . addslashes_gpc( $ame_post_tags ) . "').fadeIn('fast');
     
    263263    }
    264264    do_action( 'edit_post', $postid, get_post( $postid ) );
    265     do_action( 'save_post', $postid, get_post( $postid ) );
     265    do_action( 'save_post', $postid, get_post( $postid ), true );
    266266    die( "re_init();jQuery('span#ame_category" . esc_attr(intval($postid)) . "').fadeOut('fast', function() {
    267267        jQuery('a#thickboxlink" . esc_attr(intval($postid)) . "').show();
  • admin-management-xtended/trunk/readme.txt

    r3271896 r3361387  
    105105== Changelog ==
    106106
     107= 2.5.1 =
     108* FIXED: ArgumentCountError when using Elegant Themes
     109
    107110= 2.5.0 =
    108111* FIXED: WordPress 6.8 compatibility
Note: See TracChangeset for help on using the changeset viewer.