Skip to content

Commit d3d9df4

Browse files
authored
bugfix trim() fatale error in modOutputFilter.php
1 parent 618ffaf commit d3d9df4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/Revolution/Filters/modOutputFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function filter(&$element)
6363

6464
$this->log('Processing Modifier: ' . $m_cmd . ' (parameters: ' . $m_val . ')');
6565

66-
$output = trim($output);
66+
$output = trim((string) $output);
6767

6868
try {
6969
switch ($m_cmd) {

0 commit comments

Comments
 (0)