Skip to content
This repository has been archived by the owner on Nov 9, 2020. It is now read-only.

Commit

Permalink
Releasing 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rahularyan committed Feb 28, 2016
1 parent 4fc61fa commit 208e869
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/[email protected]&cmd=_
Tags: anspress, question, answer, tags, q&a, forum, stackoverflow, quora
Requires at least: 4.1.1
Tested up to: 4.4
Stable tag: 1.5.1
Stable tag: 1.5.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -32,6 +32,9 @@ Or if you want to install it manually simple follow this:

== Changelog ==

= 1.5.1 =
* Minor bug fixes

= 1.5 =
* Fix: error 404 when tag is numeric
* Fix: Don't check minimum characters when it is zero
Expand Down
6 changes: 4 additions & 2 deletions tags-for-anspress.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Plugin URI: http://anspress.io/tags-for-anspress
* Description: Extension for AnsPress. Add tags in AnsPress.
* Donate link: https://www.paypal.com/cgi-bin/[email protected]&cmd=_xclick&item_name=Donation%20to%20AnsPress%20development
* Version: 1.5.1
* Version: 1.5.2
* Author: Rahul Aryan
* Author URI: http://anspress.io
* Text Domain: ap
Expand Down Expand Up @@ -780,7 +780,9 @@ public function ap_current_page_is($page) {
*/

function tags_for_anspress() {
$ap_tags = new Tags_For_AnsPress();
if( apply_filters( 'anspress_load_ext', true, 'tags-for-anspress' ) ){
$ap_tags = new Tags_For_AnsPress();
}
}
add_action( 'plugins_loaded', 'tags_for_anspress' );

0 comments on commit 208e869

Please sign in to comment.