Skip to content

Commit

Permalink
Merge branch 'release/160417'
Browse files Browse the repository at this point in the history
  • Loading branch information
raamdev committed Apr 17, 2016
2 parents 8ea969b + 708e224 commit f6580ba
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion comet-cache-pro.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/*
Version: 160416
Version: 160417
Text Domain: comet-cache
Plugin Name: Comet Cache Pro
Network: true
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
=== Comet Cache ===

Stable tag: 160416
Stable tag: 160417
Requires at least: 4.2
Tested up to: 4.6-alpha
Text Domain: comet-cache
Expand Down Expand Up @@ -336,6 +336,10 @@ Requires WordPress v4.2+.

== Changelog ==

= v160417 =

- **Bug Fix**: Fixed a "PHP Fatal error: Undefined class constant 'CACHE_PATH_NO_SCHEME'" with introduced by the previous release (v160416). This issue only affected sites where Feed Caching was enabled (_Comet Cache → Plugin Options → RSS, RDF, and Atom Feeds_). Props to MassimoD and @emanwebdev for reporting. See [Issue #739](https://github.com/websharks/comet-cache/issues/739).

= v160416 =

- **Enhancement**: Several PHP 5.4+ enhancements, most notably a conversion from PHP Closures to PHP Traits. See [Issue #635](https://github.com/websharks/comet-cache/issues/635).
Expand Down
4 changes: 3 additions & 1 deletion src/includes/classes/FeedUtils.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
<?php
namespace WebSharks\CometCache\Pro\Classes;

use WebSharks\CometCache\Pro\Interfaces;

/**
* Feed Utils.
*
* @since 150422 Rewrite.
*/
class FeedUtils extends AbsBase
class FeedUtils extends AbsBase implements Interfaces\Shared\CachePathConsts
{
/**
* @type string WordPress `home_url()`.
Expand Down
2 changes: 1 addition & 1 deletion src/includes/stub.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
require_once dirname(__DIR__).'/vendor/autoload.php';
require_once __DIR__.'/functions/i18n-utils.php';

${__FILE__}['version'] = '160416'; //version//
${__FILE__}['version'] = '160417'; //version//
${__FILE__}['plugin'] = dirname(dirname(__DIR__));
${__FILE__}['plugin'] .= '/'.basename(${__FILE__}['plugin']).'.php';
${__FILE__}['ns_path'] = str_replace('\\', '/', __NAMESPACE__); // To dir/path.
Expand Down
4 changes: 2 additions & 2 deletions src/includes/translations/comet-cache-pro.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# This file is distributed under the same license as the Comet Cache Pro package.
msgid ""
msgstr ""
"Project-Id-Version: Comet Cache Pro 160416\n"
"Project-Id-Version: Comet Cache Pro 160417\n"
"Report-Msgid-Bugs-To: http://wordpress.org/tag/comet-cache-pro\n"
"POT-Creation-Date: 2016-04-16 12:22:08+00:00\n"
"POT-Creation-Date: 2016-04-17 20:21:39+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand Down

0 comments on commit f6580ba

Please sign in to comment.