1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-12 01:34:31 +02:00

Bump version to 3.0.125

This commit is contained in:
Ryan Cramer
2019-01-25 15:00:32 -05:00
parent 1aad2430d5
commit 6ad5239666
2 changed files with 7 additions and 3 deletions

View File

@@ -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

View File

@@ -44,7 +44,7 @@ class ProcessWire extends Wire {
* Reversion revision number * Reversion revision number
* *
*/ */
const versionRevision = 124; const versionRevision = 125;
/** /**
* Version suffix string (when applicable) * Version suffix string (when applicable)
@@ -279,8 +279,12 @@ class ProcessWire extends Wire {
/** @noinspection PhpIncludeInspection */ /** @noinspection PhpIncludeInspection */
include_once($file); 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 // check if noHTTPS option is using conditional hostname
if($config->noHTTPS && $config->noHTTPS !== true) { if($config->noHTTPS && $config->noHTTPS !== true) {