Plugin Directory

Changeset 2171776


Ignore:
Timestamp:
10/11/2019 01:17:58 PM (6 years ago)
Author:
amitaits
Message:

Updated version 1.3.2

Location:
posts-viewed-recently/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • posts-viewed-recently/trunk/readme.txt

    r2032952 r2171776  
    44Tags: recent, recently, last, viewed, visited, post, posts, page, pages, widget, thumbnail, thumbnails, sidebar, plugin, wordpress, custom, taxonomy
    55Requires at least: 3.0
    6 Tested up to: 5.0.3
    7 Stable tag: 1.3.1
     6Tested up to: 5.2.3
     7Stable tag: 1.3.2
    88License: GPLv2 or later
    99
     
    6262== Changelog ==
    6363
     64= 1.3.2 =
     65* Bugfix: Missing closing tags when the number of posts viewed was more than the number of posts to show. Issue fixed
     66
    6467= 1.3.1 =
    6568* Direct file access blocked
     
    8083
    8184== Upgrade Notice ==
     85
     86= 1.3.2 =
     87* Bugfix: Broken HTML fixed
    8288
    8389= 1.3.1 =
  • posts-viewed-recently/trunk/recent_viewed_posts.php

    r1952772 r2171776  
    77Plugin URI: https://www.astech.solutions/wordpress-javascript-jquery-plugins/posts-viewed-recently/
    88Description: Posts Viewed Recently plugin shows posts/pages viewed by a visitor as a responsive sidebar widget or in post/page using the shortcode.
    9 Version: 1.3.1
     9Version: 1.3.2
    1010Author: AS Tech Solutions
    1111Author URI: https://www.astech.solutions/
     
    148148                foreach ( $ft_cookie_posts as $postId ) {
    149149                    if ( $count >= $number || absint( $postId ) == 0 ) {
    150                         return;
     150                        break;
    151151                    }
    152152                    $ft_post = get_post( absint( $postId ) ); // Get the post
Note: See TracChangeset for help on using the changeset viewer.