Changeset 1364
- Timestamp:
- 05/14/06 14:09:43 (4 years ago)
- Files:
-
- trunk/data/web/sf/css/sf_web_debug/main.css (modified) (1 diff)
- trunk/lib/debug/sfWebDebug.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/data/web/sf/css/sf_web_debug/main.css
r1363 r1364 71 71 margin: 0; 72 72 margin-left: 30px; 73 padding: 0 5px;73 padding: 5px 0; 74 74 } 75 75 trunk/lib/debug/sfWebDebug.class.php
r1363 r1364 215 215 if (preg_match('/executeQuery.+?\:\s+(.+)$/', $log, $match)) 216 216 { 217 $sql_logs[] .= $match[1] ;217 $sql_logs[] .= $match[1]."\n"; 218 218 } 219 219 … … 255 255 $dbInfoDetails = ' 256 256 <div id="sfWebDebugDatabaseDetails"> 257 <ol><li>'.implode('</ ><li>', $sql_logs).'</li></ol>257 <ol><li>'.implode('</li><li>', $sql_logs).'</li></ol> 258 258 </div> 259 259 ';

