Skip to content

Commit

Permalink
Fix literal php tag output in test.php.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Oct 11, 2015
1 parent d2cb9e6 commit d0ea881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion horde/lib/Test.php
Expand Up @@ -752,7 +752,7 @@ protected function _requiredFileCheck($filelist, $php, $is_local = false)
if (preg_match("/<?php\s+/", $contents)) {
$entry[] = 'The file <code>' . htmlspecialchars($key) . '</code> is outputting a non-empty string when parsed. Configuration files should not output anything. Output string:' . "\n<pre>" . htmlspecialchars($parse_contents) . '</pre>';
} else {
$entry[] = 'The file <code>' . htmlspecialchars($key) . '</code> appears to be missing the \'<?php\' opening tag.';
$entry[] = 'The file <code>' . htmlspecialchars($key) . '</code> appears to be missing the \'&lt;?php\' opening tag.';
}
} else {
$entry[] = $this->_status(true);
Expand Down

0 comments on commit d0ea881

Please sign in to comment.