Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-26 12:16:34 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-26 12:16:34 +0400
commit7f959166126fd62a046991ff9d9282f09aac7cee (patch)
treebc0ed4c156bccf0d6044dca2733f2c8a69bceafd /core
parentb4c557e87de22cd49e041898707f7622ef57e825 (diff)
Tweaks.
Diffstat (limited to 'core')
-rw-r--r--core/Error.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Error.php b/core/Error.php
index 684d951859..64e357bd30 100644
--- a/core/Error.php
+++ b/core/Error.php
@@ -129,7 +129,7 @@ class Error
$htmlString .= ":</strong> <em>{$message->errstr}</em> in <strong>{$message->errfile}</strong>";
$htmlString .= " on line <strong>{$message->errline}</strong>\n";
$htmlString .= "<br /><br />Backtrace --&gt;<div style=\"font-family:Courier;font-size:10pt\">";
- $htmlString .= str_replace(array("\n", '#'), array("<br />\n", "<br />\n#"), $message->backtrace);
+ $htmlString .= str_replace("\n", "<br />\n", $message->backtrace);
$htmlString .= "</div><br />";
$htmlString .= "\n </pre></div><br />";