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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
<?php
/**
* GForge Project Management Facility
*
* Copyright 2002 GForge, LLC
* http://gforge.org/
*
* @version $Id: deleteartifact.php 3742 2004-12-20 16:53:54Z ruben $
*
*/
$ath->header(array ('title'=>$Language->getText('tracker_mod','delete_title').': '.$ah->getID(). ' - ' . $ah->getSummary(),'pagename'=>'tracker','atid'=>$ath->getID(),'sectionvals'=>array($group->getPublicName()) ));
?>
<form action="<?php echo "$PHP_SELF?aid=$aid&group_id=$group_id"; ?>" method="post">
<input type="hidden" name="func" value="postdeleteartifact" />
<input type="hidden" name="atid" value="<?php echo $atid; ?>" />
<table border="0" align="center">
<tr>
<td align="center"><h3><font color="#FF0000"><?php echo $Language->getText('tracker_artifact','are_you_sure_delete'); ?></font></h3>
<h3>"<?php echo $ah->getSummary(); ?>"</h3></td>
</tr>
<tr align="center">
<td align="center"><input type="checkbox" value="1" name="confirm_delete"> <?php echo $Language->getText('tracker_artifact','confirm_delete'); ?></td>
</tr>
<tr>
<td align="center"><input type="submit" value="<?php echo $Language->getText('general','submit'); ?>" name="submit" /></td>
</tr>
</table>
</form>
<?php
$ath->footer(array());
// Local Variables:
// mode: php
// c-file-style: "bsd"
// End:
?>
|