@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | { |
| 100 | 100 | $options += ['class' => '']; |
| 101 | 101 | // set breadcrumb item class for Bootstrap |
| 102 | - $options['class'] = $options['class'] . ' breadcrumb-item'; |
|
| 102 | + $options['class'] = $options['class'].' breadcrumb-item'; |
|
| 103 | 103 | // last item in breadcrump is current (active) page and not linked |
| 104 | 104 | if ($url === false) { |
| 105 | 105 | // set breadcrumb active item class for Bootstrap |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | PREG_SPLIT_NO_EMPTY |
| 128 | 128 | ); |
| 129 | 129 | if (empty($errors)) { |
| 130 | - return '<p>' . __('No log file found.') . '</p>'; |
|
| 130 | + return '<p>'.__('No log file found.').'</p>'; |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | $out = ''; |
@@ -138,11 +138,11 @@ discard block |
||
| 138 | 138 | $_i = self::tagId(); |
| 139 | 139 | $_details = $e->details(); |
| 140 | 140 | if (!empty($_details)) { |
| 141 | - $out .= '<button class="btn btn-mini" style="float:right;" onclick="$(\'#' . $_i . '\').toggle(); return false;">' . __( |
|
| 141 | + $out .= '<button class="btn btn-mini" style="float:right;" onclick="$(\'#'.$_i.'\').toggle(); return false;">'.__( |
|
| 142 | 142 | 'Details' |
| 143 | - ) . '</button>' . "\n"; |
|
| 143 | + ).'</button>'."\n"; |
|
| 144 | 144 | } |
| 145 | - $out .= '<pre style="font-size: 10px;">' . "\n"; |
|
| 145 | + $out .= '<pre style="font-size: 10px;">'."\n"; |
|
| 146 | 146 | $out .= '<div class="row"><div class="span2" style="text-align: right">'; |
| 147 | 147 | $out .= $this->TimeH->formatTime($e->time(), 'eng'); |
| 148 | 148 | |
@@ -150,12 +150,12 @@ discard block |
||
| 150 | 150 | $out .= '<div class="span7">'; |
| 151 | 151 | $out .= $e->message(); |
| 152 | 152 | if (!empty($_details)) { |
| 153 | - $out .= '<span id="' . $_i . '" style="display: none;">' . "\n"; |
|
| 153 | + $out .= '<span id="'.$_i.'" style="display: none;">'."\n"; |
|
| 154 | 154 | $out .= $_details; |
| 155 | 155 | $out .= '</span>'; |
| 156 | 156 | } |
| 157 | 157 | $out .= '</div></div>'; |
| 158 | - $out .= '</pre>' . "\n"; |
|
| 158 | + $out .= '</pre>'."\n"; |
|
| 159 | 159 | if ($k++ > $_nErrorsToShow) { |
| 160 | 160 | break; |
| 161 | 161 | } |