1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-05 22:37:55 +02:00

Bump version to 3.0.153

This commit is contained in:
Ryan Cramer
2020-03-20 15:36:10 -04:00
parent 833736a1fc
commit 278d323acd
4 changed files with 5 additions and 5 deletions

View File

@@ -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());

View File

@@ -46,7 +46,7 @@ class ProcessWire extends Wire {
* Reversion revision number
*
*/
const versionRevision = 152;
const versionRevision = 153;
/**
* Version suffix string (when applicable)

View File

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

View File

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