| 56 | | $bro->DeleteFile($d,$R); |
|---|
| | 56 | if($del_confirm == "y") |
|---|
| | 57 | $bro->DeleteFile($d,$R); |
|---|
| | 58 | else{ |
|---|
| | 59 | include("head.php"); |
|---|
| | 60 | ?> |
|---|
| | 61 | </head> |
|---|
| | 62 | <body> |
|---|
| | 63 | <h3><?php printf(_("Deleting files and/or directories")); ?> : </h3> |
|---|
| | 64 | <form action="bro_main.php" method="post"> |
|---|
| | 65 | <input type="hidden" name="del_confirm" value="y" /> |
|---|
| | 66 | <input type="hidden" name="formu" value="2" /> |
|---|
| | 67 | <p class="error"><?php __("WARNING : Confirm the deletion of this files"); ?></p> |
|---|
| | 68 | <?php foreach($d as $file){ ?> |
|---|
| | 69 | <p><?php echo $file; ?></p> |
|---|
| | 70 | <input type="hidden" name="d[]" value="<?php echo $file; ?>" /> |
|---|
| | 71 | <?php } ?> |
|---|
| | 72 | <blockquote> |
|---|
| | 73 | <input type="submit" class="inb" name="actdel" value="<?php __("Yes"); ?>" /> |
|---|
| | 74 | <input type="button" class="inb" name="cancel" value="<?php __("No"); ?>" onclick="document.location='bro_main.php';" /> |
|---|
| | 75 | </blockquote> |
|---|
| | 76 | </form> |
|---|
| | 77 | </body> |
|---|
| | 78 | </html> |
|---|
| | 79 | <?php |
|---|
| | 80 | die(); |
|---|
| | 81 | } |
|---|