Changeset 5996


Ignore:
Timestamp:
02/03/12 12:20:41 (4 months ago)
Author:
vain
Message:
  • again changes to the source highlighting .. still crappy.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/core/errorhandler.core.php

    r5954 r5996  
    582582                /** 
    583583                 * transform the array into html string 
    584                  * enhance readablility by imploding the array with linebreaks (CR) 
     584                 * enhance readablility by imploding the array with spaces (formerly <br>; when inside <code>) 
    585585                 */ 
    586                 $errorcontext_lines  = implode($result, '<br />'); 
     586                $errorcontext_lines  = implode($result, ' '); 
    587587 
    588588                $sprintf_html = '<table> 
    589589                                    <tr> 
    590590                                        <td class="num">'.CR.'%s'.CR.'</td> 
    591                                         <td><code>'.CR.'%s'.CR.'</code></td> 
     591                                        <td><pre>'.CR.'%s'.CR.'</pre></td> 
    592592                                    </tr> 
    593593                                </table>'; 
Note: See TracChangeset for help on using the changeset viewer.