Changeset 3361387
- Timestamp:
- 09/14/2025 07:39:17 PM (6 months ago)
- Location:
- admin-management-xtended/trunk
- Files:
-
- 3 edited
-
admin-management-xtended.php (modified) (2 diffs)
-
general-functions.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
admin-management-xtended/trunk/admin-management-xtended.php
r3271896 r3361387 2 2 /* 3 3 Plugin Name: Admin Management Xtended 4 Version: 2.5. 04 Version: 2.5.1 5 5 Plugin URI: https://www.schloebe.de/wordpress/admin-management-xtended-plugin/ 6 6 Description: <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 … … 39 39 * Define the plugin version 40 40 */ 41 define("AME_VERSION", "2.5. 0");41 define("AME_VERSION", "2.5.1"); 42 42 43 43 /** -
admin-management-xtended/trunk/general-functions.php
r3271896 r3361387 9 9 10 10 /* 11 * Copyright 2008-202 4Oliver Schlöbe (email : scripts@schloebe.de)11 * Copyright 2008-2025 Oliver Schlöbe (email : scripts@schloebe.de) 12 12 * 13 13 * This program is free software; you can redistribute it and/or modify … … 189 189 $post = get_post( $postid ); 190 190 do_action( 'edit_post', $postid, $post ); 191 do_action( 'save_post', $postid, $post );191 do_action( 'save_post', $postid, $post, true ); 192 192 die( "jQuery('span#ame_tags" . esc_attr(intval($postid)) . "').fadeOut('fast', function() { 193 193 jQuery('span#ame_tags" . esc_attr(intval($postid)) . "').html('" . addslashes_gpc( $ame_post_tags ) . "').fadeIn('fast'); … … 263 263 } 264 264 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 ); 266 266 die( "re_init();jQuery('span#ame_category" . esc_attr(intval($postid)) . "').fadeOut('fast', function() { 267 267 jQuery('a#thickboxlink" . esc_attr(intval($postid)) . "').show(); -
admin-management-xtended/trunk/readme.txt
r3271896 r3361387 105 105 == Changelog == 106 106 107 = 2.5.1 = 108 * FIXED: ArgumentCountError when using Elegant Themes 109 107 110 = 2.5.0 = 108 111 * FIXED: WordPress 6.8 compatibility
Note: See TracChangeset
for help on using the changeset viewer.