Skip to content

Commit

Permalink
later action hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
pfefferle committed Feb 18, 2013
1 parent c1653a6 commit adf7152
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: /.well-known/
Plugin URI: http://wordpress.org/extend/plugins/well-known/
Description: This plugin enables "Well-Known URIs" support for WordPress (RFC 5785: http://tools.ietf.org/html/rfc5785).
Version: 0.6.2
Version: 1.0.0
Author: pfefferle
Author URI: http://notizblog.org/
*/
Expand Down Expand Up @@ -56,8 +56,8 @@ public function delegate_request($wp) {
}

add_filter('query_vars', array('WellKnownPlugin', 'query_vars'));
add_action('parse_request', array('WellKnownPlugin', 'delegate_request'));
add_action('generate_rewrite_rules', array('WellKnownPlugin', 'rewrite_rules'));
add_action('parse_request', array('WellKnownPlugin', 'delegate_request'), 99);
add_action('generate_rewrite_rules', array('WellKnownPlugin', 'rewrite_rules'), 99);

register_activation_hook(__FILE__, 'flush_rewrite_rules');
register_deactivation_hook(__FILE__, 'flush_rewrite_rules');
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: http://www.14101978.de
Tags: OpenID, XRD, well-known, XML, Discovery
Requires at least: 3.5.1
Tested up to: 3.2
Stable tag: 0.6.2
Stable tag: 1.0.0

This plugin enables "Well-Known URIs" support for WordPress

Expand Down

0 comments on commit adf7152

Please sign in to comment.