From 670916e73040aedccaa3f7eb0748700f44e8cd57 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Fri, 17 Apr 2020 15:29:10 -0400 Subject: [PATCH] Bump version to 3.0.154 --- wire/core/ProcessWire.php | 2 +- wire/modules/LanguageSupport/LanguageTranslator.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wire/core/ProcessWire.php b/wire/core/ProcessWire.php index 81a85743..5322284b 100644 --- a/wire/core/ProcessWire.php +++ b/wire/core/ProcessWire.php @@ -46,7 +46,7 @@ class ProcessWire extends Wire { * Reversion revision number * */ - const versionRevision = 153; + const versionRevision = 154; /** * Version suffix string (when applicable) diff --git a/wire/modules/LanguageSupport/LanguageTranslator.php b/wire/modules/LanguageSupport/LanguageTranslator.php index 13f8a88f..3bd9bd71 100644 --- a/wire/modules/LanguageSupport/LanguageTranslator.php +++ b/wire/modules/LanguageSupport/LanguageTranslator.php @@ -257,9 +257,10 @@ class LanguageTranslator extends Wire { * * @param string|object $textdomain * @return string + * @since 3.0.154 was protected in prior versions * */ - protected function textdomainString($textdomain) { + public function textdomainString($textdomain) { if(is_string($textdomain) && (strpos($textdomain, DIRECTORY_SEPARATOR) !== false || strpos($textdomain, '/') !== false)) { $textdomain = $this->filenameToTextdomain($textdomain); // @werker #424