Version Description
Download this release
Release Info
Developer | mbis |
Plugin | Permalink Manager Lite |
Version | 2.0.5.6.1 |
Comparing to | |
See all releases |
Code changes from version 2.0.5.6 to 2.0.5.6.1
includes/core/permalink-manager-uri-functions-post.php
CHANGED
@@ -20,10 +20,10 @@ class Permalink_Manager_URI_Functions_Post extends Permalink_Manager_Class {
|
|
20 |
* URI Editor
|
21 |
*/
|
22 |
add_filter( 'get_sample_permalink_html', array($this, 'edit_uri_box'), 99, 5 );
|
23 |
-
add_action( 'save_post', array($this, 'update_post_uri'),
|
24 |
-
add_action( 'edit_attachment', array($this, 'update_post_uri'),
|
25 |
-
add_action( 'wp_insert_post', array($this, 'new_post_uri'),
|
26 |
-
add_action( 'wp_trash_post', array($this, 'remove_post_uri'),
|
27 |
|
28 |
add_action( 'quick_edit_custom_box', array($this, 'quick_edit_column_form'), 99, 3);
|
29 |
}
|
20 |
* URI Editor
|
21 |
*/
|
22 |
add_filter( 'get_sample_permalink_html', array($this, 'edit_uri_box'), 99, 5 );
|
23 |
+
add_action( 'save_post', array($this, 'update_post_uri'), 5, 1);
|
24 |
+
add_action( 'edit_attachment', array($this, 'update_post_uri'), 5, 1 );
|
25 |
+
add_action( 'wp_insert_post', array($this, 'new_post_uri'), 5, 1 );
|
26 |
+
add_action( 'wp_trash_post', array($this, 'remove_post_uri'), 5, 1 );
|
27 |
|
28 |
add_action( 'quick_edit_custom_box', array($this, 'quick_edit_column_form'), 99, 3);
|
29 |
}
|