1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-08 15:57:01 +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());