Commit a46b26b3 by Luciano Baraglia

requirements: TD html fix - added SPAN in result TD

parent 774a7b52
......@@ -56,8 +56,8 @@
<td>
<?php echo $requirement['name']; ?>
</td>
<td >
<?php echo $requirement['condition'] ? 'Passed' : ($requirement['mandatory'] ? 'Failed' : 'Warning'); ?>
<td>
<span class="result"><?php echo $requirement['condition'] ? 'Passed' : ($requirement['mandatory'] ? 'Failed' : 'Warning'); ?></span>
</td>
<td>
<?php echo $requirement['by']; ?>
......@@ -79,4 +79,4 @@
</div>
</div>
</body>
</html>
\ No newline at end of file
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment