Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
gordielachance authored and gordielachance committed Sep 16, 2016
1 parent 5343113 commit 0f51a5e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bbpress-pencil-unread.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: bbPress Pencil Unread
Plugin URI: http://wordpress.org/extend/plugins/bbpress-pencil-unread
Description: Display which bbPress forums/topics have already been read by the user.
Version: 1.2.7
Version: 1.2.8
Author: G.Breant
Author URI: https://profiles.wordpress.org/grosbouff/
Text Domain: bbppu
Expand All @@ -16,7 +16,7 @@ class bbP_Pencil_Unread {
/**
* @public string plugin version
*/
public $version = '1.2.7';
public $version = '1.2.8';

/**
* @public string plugin DB version
Expand Down Expand Up @@ -502,7 +502,6 @@ function has_user_read_all_forum_topics( $forum_id,$user_id=false ){
$debug_transient_message = ' (from cache)';
$transient_name = sprintf('bbppu_user_%s_read_forum_%s',$user_id,$forum_id);
$transient_duration = $this->get_options('count_topics_transient_duration');
$transient_duration = null;

if ( (!$transient_duration) || ( false === ( $has_read = get_transient( $transient_name ) ) ) ) {

Expand Down
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ If it hasn't been done already, you can translate the plugin and send me the tra

== Changelog ==

= 1.2.8 =
* Minor

= 1.2.7 =
* Added the 'bookmark' option, which adds (by default) a link after topics titles to go directly to the last read reply of that topic.
* Forums marks is now an option
Expand Down

0 comments on commit 0f51a5e

Please sign in to comment.