From 278d323acd977bf2efd932bcaf5f26ec66e9db39 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Fri, 20 Mar 2020 15:36:10 -0400 Subject: [PATCH] Bump version to 3.0.153 --- index.php | 2 +- wire/core/ProcessWire.php | 2 +- wire/modules/Fieldtype/FieldtypeComments/CommentForm.php | 2 +- wire/modules/PagePermissions.module | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.php b/index.php index e266316a..17d20339 100644 --- a/index.php +++ b/index.php @@ -50,7 +50,7 @@ $wire = null; try { // Bootstrap ProcessWire's core and make the API available with $wire $wire = new ProcessWire($config); - $process = $wire->modules->get('ProcessPageView'); + $process = $wire->modules->get('ProcessPageView'); /** @var ProcessPageView $process */ $wire->wire('process', $process); echo $process->execute($config->internal); $config->internal ? $process->finished() : extract($wire->wire('all')->getArray()); diff --git a/wire/core/ProcessWire.php b/wire/core/ProcessWire.php index ea98ead8..81a85743 100644 --- a/wire/core/ProcessWire.php +++ b/wire/core/ProcessWire.php @@ -46,7 +46,7 @@ class ProcessWire extends Wire { * Reversion revision number * */ - const versionRevision = 152; + const versionRevision = 153; /** * Version suffix string (when applicable) diff --git a/wire/modules/Fieldtype/FieldtypeComments/CommentForm.php b/wire/modules/Fieldtype/FieldtypeComments/CommentForm.php index ab737807..083ca5c9 100644 --- a/wire/modules/Fieldtype/FieldtypeComments/CommentForm.php +++ b/wire/modules/Fieldtype/FieldtypeComments/CommentForm.php @@ -148,7 +148,7 @@ class CommentForm extends Wire implements CommentFormInterface { 'text' => null, ), - // whether or not eht preset values above will be changeable by the user + // whether or not the preset values above will be changeable by the user // applies only for preset values that are not null. 'presetsEditable' => false, diff --git a/wire/modules/PagePermissions.module b/wire/modules/PagePermissions.module index 0016165a..3ffe15c3 100644 --- a/wire/modules/PagePermissions.module +++ b/wire/modules/PagePermissions.module @@ -636,7 +636,7 @@ class PagePermissions extends WireData implements Module { /** * Return whether or not given page in Trash is listable * - * @param null $page Page, or specify null for a general "trash is listable" request + * @param Page|null $page Page, or specify null for a general "trash is listable" request * @return bool * */ @@ -825,7 +825,7 @@ class PagePermissions extends WireData implements Module { } /** - * Checks that a parent is addable within the context of it's template (i.e. has page-create for the template) + * Checks that a parent is addable within the context of its template (i.e. has page-create for the template) * * When this function is called, it has already been determined that the user has page-add permission. * So this is just narrowing down to make sure they have access on a template.