Unsupported scripts and control panel web app for a hosting company
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

viewlog.php 953B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. if (count($issueChanges) == 0) {
  3. ?>
  4. <div class="block">
  5. <h2>Changes</h2>
  6. <div class="innerblock" style="text-align: center; font-style: italic;">No Changes</div>
  7. </div>
  8. <?php
  9. return;
  10. }
  11. echo '<div class="block nobottomdiv">';
  12. echo '<h2>Changes</h2>';
  13. foreach($issueChanges as $id => $change) {
  14. ?>
  15. <table class="innerblock righthead bottomdiv">
  16. <tr>
  17. <th>ID</th><td><?php echo h($change['ilog_id']); ?></td>
  18. </tr><tr>
  19. <th>Time</th><td><?php echo d('Y-m-d H:m:s', $change['ilog_time']); ?></td>
  20. </tr><tr>
  21. <th>User</th><td><?php echo n($change['user_name']); ?></td>
  22. </tr><tr>
  23. <th>Field</th><td><?php echo h($change['ilog_field']); ?></td>
  24. </tr><tr>
  25. <th>Old Value</th><td><?php echo h($change['ilog_old']); ?></td>
  26. </tr><tr>
  27. <th>New Value</th><td><?php echo h($change['ilog_new']); ?></td>
  28. </tr>
  29. </table>
  30. <?php
  31. }
  32. echo '</div>';
  33. ?>