Changeset 5954
- Timestamp:
- 01/24/12 21:04:19 (4 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
core/errorhandler.core.php (modified) (1 diff)
-
themes/core/css/error.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/core/errorhandler.core.php
r5896 r5954 566 566 $lines_array[$surrounding_lines] = '<span style="color: white; background-color:#BF0000;">'.$lines_array[$surrounding_lines].'</span>'; 567 567 568 # transform linenumbers array to string for later display 569 $lines_html = implode($lines_array, ' <br />');568 # transform linenumbers array to string for later display, use spaces as separator 569 $lines_html = implode($lines_array, ' '); 570 570 571 571 # get ALL LINES syntax highlighted source-code of the file and explode it into an array -
trunk/themes/core/css/error.css
r5898 r5954 104 104 } 105 105 106 .num {107 border-right:1px solid gray;108 color:gray;109 float:left;110 font-family:monospace;111 font-size:13px;112 margin-right:6pt;113 padding-right:6pt;114 text-align:right115 }116 117 106 a:hover { 118 107 color:red; … … 124 113 } 125 114 115 .num { 116 width: 10px; 117 border-right:1px solid gray; 118 color:gray; 119 padding-right: 6px; 120 text-align:right; 121 font-family:monospace; 122 font-size:14px; 123 line-height: 1.3em; 124 } 125 126 126 code { 127 white-space:nowrap 127 white-space: nowrap; 128 font-family: monospace; 129 font-size: 14px; 130 line-height: 1.3em; 128 131 } 129 132
Note: See TracChangeset
for help on using the changeset viewer.
