Browse Source

requirements: TD html fix - added SPAN in result TD

tags/2.0.0-beta
Luciano Baraglia 12 years ago
parent
commit
a46b26b34d
  1. 6
      framework/yii/requirements/views/web/index.php

6
framework/yii/requirements/views/web/index.php

@ -56,8 +56,8 @@
<td> <td>
<?php echo $requirement['name']; ?> <?php echo $requirement['name']; ?>
</td> </td>
<td > <td>
<?php echo $requirement['condition'] ? 'Passed' : ($requirement['mandatory'] ? 'Failed' : 'Warning'); ?> <span class="result"><?php echo $requirement['condition'] ? 'Passed' : ($requirement['mandatory'] ? 'Failed' : 'Warning'); ?></span>
</td> </td>
<td> <td>
<?php echo $requirement['by']; ?> <?php echo $requirement['by']; ?>
@ -79,4 +79,4 @@
</div> </div>
</div> </div>
</body> </body>
</html> </html>

Loading…
Cancel
Save