1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
<div id="bugnote_add_closed" style="display: none;">
<table class="width100" cellspacing="1">
<tr>
<td class="form-title" colspan="2">
<a href="" onclick="ToggleDiv( 'bugnote_add', g_div_bugnote_add ); return false;"><img border="0" src="images/plus.png" alt="+" /></a>
<?php echo lang_get( 'add_bugnote_title' ) ?>
</td>
</tr>
</table>
</div>
<?php } ?>
<div id="bugnote_add_open">
<form method="post" action="bugnote_add.php">
<input type="hidden" name="bug_id" value="<?php echo $f_bug_id ?>" />
<table class="width100" cellspacing="1">
<tr>
<td class="form-title" colspan="2">
<?php if ( ON == config_get( 'use_javascript' ) ) { ?>
<a href="" onclick="ToggleDiv( 'bugnote_add', g_div_bugnote_add ); return false;"><img border="0" src="images/minus.png" alt="-" /></a>
<?php echo lang_get( 'add_bugnote_title' ) ?>
<?php } ?>
</td>
</tr> |