Deprecated: Assigning the return value of new by reference is deprecated in /home/bluestat/public_html/source/index.php on line 477
Bugdar2 - Blob - ViewGit - Blue Static
<h1>Search</h1>

<form action="<?= EventLink('Search') ?>" method="post">
<input type="hidden" name="do" value="search" />
<input type="search" name="query_string" value="$[input.query_string]" id="query_string" style="width:400px" />
<input type="submit" value="Go" />
</form>

<table border="1" cellspacing="2" cellpadding="5">
  <tr>
    <th>ID</th>
    <th>Title</th>
    <th>Reporter</th>
    <th>Date</th>
  </tr>
  <? foreach ($this->hits as $bug): ?>
  <tr>
    <td><a href="<?= EventLink('BugView', $bug->bug_id) ?>"><?= Cleaner::HTML($bug->bug_id) ?></a></td>
    <td><a href="<?= EventLink('BugView', $bug->bug_id) ?>"><?= Cleaner::HTML($bug->title) ?></a></td>
    <td><a href="<?= EventLink('UserView', $bug->reporting_alias) ?>"><?= Cleaner::HTML($bug->reporting_alias) ?></a></td>
    <td><?= gmdate('r', $bug->reporting_date + (Bugdar::$auth->current_user()->timezone * 3600)) ?></td>
  </tr>
  <? endforeach ?>
</table>