diff --git a/README.md b/README.md index 353dd40c..0746ece5 100644 --- a/README.md +++ b/README.md @@ -140,5 +140,5 @@ resolved any issues. ------ -Copyright 2018 by Ryan Cramer / Ryan Cramer Design, LLC +Copyright 2019 by Ryan Cramer / Ryan Cramer Design, LLC diff --git a/wire/core/ProcessWire.php b/wire/core/ProcessWire.php index 766dfb64..9ae2f631 100644 --- a/wire/core/ProcessWire.php +++ b/wire/core/ProcessWire.php @@ -44,7 +44,7 @@ class ProcessWire extends Wire { * Reversion revision number * */ - const versionRevision = 124; + const versionRevision = 125; /** * Version suffix string (when applicable) @@ -279,8 +279,12 @@ class ProcessWire extends Wire { /** @noinspection PhpIncludeInspection */ include_once($file); } - // @todo + if($config->installed >= 1547136020) { + // installations Jan 10, 2019 and onwards: + // make the __('text') translation function return entity encoded text, whether translated or not + __(true, 'entityEncode', true); + } // check if noHTTPS option is using conditional hostname if($config->noHTTPS && $config->noHTTPS !== true) {