Changeset 185
- Timestamp:
- 09/19/2006 12:32:27 AM (2 years ago)
- Location:
- trunk/coverager
- Files:
-
- 3 modified
-
coverager.css (modified) (1 diff)
-
coverager.php (modified) (1 diff)
-
coverager.tpl.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/coverager/coverager.css
r145 r185 61 61 62 62 .footnote { text-align: right; font-size: 12px; } 63 .error { color: red; } -
trunk/coverager/coverager.php
r184 r185 125 125 } 126 126 else if (!$this->datadir) { 127 $action = 'require xcache.coveragedump_directory'; 127 $action = 'error'; 128 $error = 'require `ini:xcache.coveragedump_directory` or `config:$datadir` to be set'; 128 129 } 129 130 else { 130 $action = "no data"; 131 $action = 'error'; 132 $error = "no data"; 131 133 } 132 134 -
trunk/coverager/coverager.tpl.php
r175 r185 226 226 } 227 227 else { 228 echo htmlspecialchars($action); 228 $error_html = htmlspecialchars($error); 229 echo <<<EOS 230 <span class="error">{$error_html}</span> 231 EOS; 229 232 } 230 233 ?>

