From efb7a8ace2ab0880e48f386daccba441c0b3e863 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Thu, 13 Sep 2018 08:34:27 -0400 Subject: [PATCH] Fix issue processwire/processwire-issues#682 fix typo about what tab to change the unpublished setting --- wire/modules/Inputfield/InputfieldPage/InputfieldPage.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wire/modules/Inputfield/InputfieldPage/InputfieldPage.module b/wire/modules/Inputfield/InputfieldPage/InputfieldPage.module index f85fc123..5b21eb96 100644 --- a/wire/modules/Inputfield/InputfieldPage/InputfieldPage.module +++ b/wire/modules/Inputfield/InputfieldPage/InputfieldPage.module @@ -790,7 +790,7 @@ class InputfieldPage extends Inputfield implements ConfigurableModule { // disallow unpublished $warning = sprintf($this->_('Unpublished page %1$s is not allowed in field "%2$s"'), $page->path, $this->label); if($this->wire('user')->isSuperuser()) { - $warning .= ' ' . sprintf($this->_('To allow unpublished pages, edit the "%s" field and see the setting on the "Advanced" tab.'), $this->name); + $warning .= ' ' . sprintf($this->_('To allow unpublished pages, edit the “%s” field and see the setting on the “Details” tab.'), $this->name); } $this->warning($warning); continue;