Separate ?> to avoid confusing syntax highlighters.

This commit is contained in:
Michal Čihař
2010-01-21 11:13:04 +00:00
parent 1243d870e7
commit f7dda75cd7

View File

@@ -381,10 +381,10 @@ class PMA_Config
$old_error_reporting = error_reporting(0);
if (function_exists('file_get_contents')) {
$eval_result =
eval('?>' . trim(file_get_contents($this->getSource())));
eval('?' . '>' . trim(file_get_contents($this->getSource())));
} else {
$eval_result =
eval('?>' . trim(implode("\n", file($this->getSource()))));
eval('?' . '>' . trim(implode("\n", file($this->getSource()))));
}
error_reporting($old_error_reporting);