Skip to content

Commit

Permalink
add one click assign
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@124 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Jan 25, 2001
1 parent 4ed440b commit 2902899
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bug_update_advanced_page.php3
Expand Up @@ -99,10 +99,10 @@
</td>
<td>
<input type=hidden name=f_date_submitted value="<? echo $v_date_submitted ?>">
<? echo date( "m-d H:i", sql_to_unix_time( $v_date_submitted ) ) ?>
<? echo date( $g_normal_date_format, sql_to_unix_time( $v_date_submitted ) ) ?>
</td>
<td>
<? echo date( "m-d H:i", sql_to_unix_time( $v_last_updated ) ) ?>
<? echo date( $g_normal_date_format, sql_to_unix_time( $v_last_updated ) ) ?>
</td>
</tr>
<tr height=5 bgcolor=<? echo $g_white_color ?>>
Expand Down
4 changes: 2 additions & 2 deletions bug_update_page.php3
Expand Up @@ -107,10 +107,10 @@
</td>
<td>
<input type=hidden name=f_date_submitted value="<? echo $v_date_submitted ?>">
<? echo date( "m-d H:i", sql_to_unix_time( $v_date_submitted ) ) ?>
<? echo date( $g_normal_date_format, sql_to_unix_time( $v_date_submitted ) ) ?>
</td>
<td>
<? echo date( "m-d H:i", sql_to_unix_time( $v_last_updated ) ) ?>
<? echo date( $g_normal_date_format, sql_to_unix_time( $v_last_updated ) ) ?>
</td>
</tr>
<tr height=5 bgcolor=<? echo $g_white_color ?>>
Expand Down

0 comments on commit 2902899

Please sign in to comment.