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

Fix issue processwire/processwire-issues#406 correction of error message in ProcessPageSort

This commit is contained in:
Ryan Cramer
2017-10-17 05:44:30 -04:00
parent fff501cac3
commit b0f37a306e

View File

@@ -121,7 +121,7 @@ class ProcessPageSort extends Process {
$sortfield = $parent->sortfield();
if($sortfield && $sortfield != 'sort') {
$msg = sprintf($this->_("Your sort was not saved because these pages are automatically sorted by %s."), $parent->sortfield);
$msg = sprintf($this->_("Your sort was not saved because these pages are automatically sorted by %s."), $sortfield);
if(!$this->isMoved) {
throw new WireException($msg);
} else {