Timber - Version 0.21.5

Version Description

  • Patch for method property visibility in TimberPost
Download this release

Release Info

Developer jarednova
Plugin Icon 128x128 Timber
Version 0.21.5
Comparing to
See all releases

Code changes from version 0.21.4 to 0.21.5

lib/timber-post.php CHANGED
@@ -8,12 +8,12 @@ class TimberPost extends TimberCore implements TimberCoreInterface {
8
  public $object_type = 'post';
9
  public static $representation = 'post';
10
 
11
- private $_custom_imported = false;
12
- private $_content;
13
- private $_get_terms;
14
- private $_permalink;
15
- private $_next = array();
16
- private $_prev = array();
17
 
18
  public $class;
19
  public $display_date;
8
  public $object_type = 'post';
9
  public static $representation = 'post';
10
 
11
+ protected $_custom_imported = false;
12
+ protected $_content;
13
+ protected $_get_terms;
14
+ protected $_permalink;
15
+ protected $_next = array();
16
+ protected $_prev = array();
17
 
18
  public $class;
19
  public $display_date;
readme.txt CHANGED
@@ -2,7 +2,7 @@
2
  Contributors: jarednova
3
  Tags: template engine, templates, twig
4
  Requires at least: 3.7
5
- Stable tag: 0.21.4
6
  Tested up to: 4.1
7
  PHP version: 5.3.0 or greater
8
  License: GPLv2 or later
@@ -41,10 +41,12 @@ Timber is great for any WordPress developer who cares about writing good, mainta
41
 
42
  == Changelog ==
43
 
 
 
 
44
  = 0.21.4 =
45
  * Fixed issue with multisite variables
46
  * Fixed issue with string conversion on function output
47
- *
48
 
49
  = 0.21.3 =
50
  * Fixed issues with static post pages
2
  Contributors: jarednova
3
  Tags: template engine, templates, twig
4
  Requires at least: 3.7
5
+ Stable tag: 0.21.5
6
  Tested up to: 4.1
7
  PHP version: 5.3.0 or greater
8
  License: GPLv2 or later
41
 
42
  == Changelog ==
43
 
44
+ = 0.21.5 =
45
+ * Patch for method property visibility in TimberPost
46
+
47
  = 0.21.4 =
48
  * Fixed issue with multisite variables
49
  * Fixed issue with string conversion on function output
 
50
 
51
  = 0.21.3 =
52
  * Fixed issues with static post pages
timber.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Timber
4
  Plugin URI: http://timber.upstatement.com
5
  Description: The WordPress Timber Library allows you to write themes using the power Twig templates
6
  Author: Jared Novack + Upstatement
7
- Version: 0.21.4
8
  Author URI: http://upstatement.com/
9
  */
10
 
4
  Plugin URI: http://timber.upstatement.com
5
  Description: The WordPress Timber Library allows you to write themes using the power Twig templates
6
  Author: Jared Novack + Upstatement
7
+ Version: 0.21.5
8
  Author URI: http://upstatement.com/
9
  */
10
 
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
- return ComposerAutoloaderInitefc86d66a4203b5f4a0f0286c9f915b1::getLoader();
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit1a7bf9a555e4135502f9ecbaf92aba4a::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInitefc86d66a4203b5f4a0f0286c9f915b1
6
  {
7
  private static $loader;
8
 
@@ -19,9 +19,9 @@ class ComposerAutoloaderInitefc86d66a4203b5f4a0f0286c9f915b1
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInitefc86d66a4203b5f4a0f0286c9f915b1', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInitefc86d66a4203b5f4a0f0286c9f915b1', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
@@ -44,7 +44,7 @@ class ComposerAutoloaderInitefc86d66a4203b5f4a0f0286c9f915b1
44
  }
45
  }
46
 
47
- function composerRequireefc86d66a4203b5f4a0f0286c9f915b1($file)
48
  {
49
  require $file;
50
  }
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit1a7bf9a555e4135502f9ecbaf92aba4a
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit1a7bf9a555e4135502f9ecbaf92aba4a', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit1a7bf9a555e4135502f9ecbaf92aba4a', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
44
  }
45
  }
46
 
47
+ function composerRequire1a7bf9a555e4135502f9ecbaf92aba4a($file)
48
  {
49
  require $file;
50
  }