Skip to content

Commit

Permalink
Stopped using html-script within the syntax highlighting since it doe…
Browse files Browse the repository at this point in the history
…snt work well
  • Loading branch information
m0hamed committed Aug 18, 2013
1 parent dbc95d2 commit 5aa121e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/View/Helper/IncidentsHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function getStacktrace($incident, $divClass) {

foreach ($incident["Incident"]["stacktrace"] as $level) {
$html .= $this->_getStackLevelInfo($level);
$html .= "<pre class='brush: js; tab-size: 2; html-script: true'>";
$html .= "<pre class='brush: js; tab-size: 2'>";
$html .= join("\n", Sanitize::clean($level["context"]));
$html .= "</pre>";
}
Expand Down

0 comments on commit 5aa121e

Please sign in to comment.