List category posts - Version 0.76.1

Version Description

  • Fixes parsing error for PHP < 5.4. We will be dropping support for PHP pre 5.4 soon, so we recommend you to upgrade to a newer version.
Download this release

Release Info

Developer fernandobt
Plugin Icon 128x128 List category posts
Version 0.76.1
Comparing to
See all releases

Code changes from version 0.76 to 0.76.1

include/lcp-parameters.php CHANGED
@@ -348,7 +348,8 @@ class LcpParameters{
348
  foreach ($params_set as $key=>$value){
349
  if ( property_exists($this, $key) ){
350
  $params_set[$key] = true;
351
- $trutify = explode('_', $key)[0];
 
352
  ${$trutify} = true;
353
  }
354
  }
348
  foreach ($params_set as $key=>$value){
349
  if ( property_exists($this, $key) ){
350
  $params_set[$key] = true;
351
+ $trutify = explode('_', $key);
352
+ $trutify = $trutify[0];
353
  ${$trutify} = true;
354
  }
355
  }
list-category-posts.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: List category posts
4
  Plugin URI: https://github.com/picandocodigo/List-Category-Posts
5
  Description: List Category Posts allows you to list posts by category in a post/page using the [catlist] shortcode. This shortcode accepts a category name or id, the order in which you want the posts to display, the number of posts to display and many more parameters. You can use [catlist] as many times as needed with different arguments. Usage: [catlist argument1=value1 argument2=value2].
6
- Version: 0.76
7
  Author: Fernando Briano
8
  Author URI: http://fernandobriano.com
9
 
3
  Plugin Name: List category posts
4
  Plugin URI: https://github.com/picandocodigo/List-Category-Posts
5
  Description: List Category Posts allows you to list posts by category in a post/page using the [catlist] shortcode. This shortcode accepts a category name or id, the order in which you want the posts to display, the number of posts to display and many more parameters. You can use [catlist] as many times as needed with different arguments. Usage: [catlist argument1=value1 argument2=value2].
6
+ Version: 0.76.1
7
  Author: Fernando Briano
8
  Author URI: http://fernandobriano.com
9
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: list, categories, posts, cms
5
  Requires at least: 3.3
6
  Tested up to: 4.9.4
7
  Requires PHP: 5.2.4
8
- Stable tag: 0.76
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -440,6 +440,10 @@ Template system has changed. Custom templates should be stored in WordPress them
440
 
441
  == Changelog ==
442
 
 
 
 
 
443
  = 0.76 =
444
 
445
  * Starting_with support for utf8mb4 charset
5
  Requires at least: 3.3
6
  Tested up to: 4.9.4
7
  Requires PHP: 5.2.4
8
+ Stable tag: 0.76.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
440
 
441
  == Changelog ==
442
 
443
+ = 0.76.1 =
444
+
445
+ * Fixes parsing error for PHP < 5.4. We will be dropping support for PHP pre 5.4 soon, so we recommend you to upgrade to a newer version.
446
+
447
  = 0.76 =
448
 
449
  * Starting_with support for utf8mb4 charset