parent
eaefa56fb9
commit
c6612a3092
|
@ -110,6 +110,16 @@ if ($formu) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($actextract) {
|
||||||
|
print _("extracting...");
|
||||||
|
if ($bro->ExtractFile($file, $R)) {
|
||||||
|
print $err->errstr();
|
||||||
|
print _("failed");
|
||||||
|
} else {
|
||||||
|
print _("done");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Creation de la liste des fichiers courants */
|
/* Creation de la liste des fichiers courants */
|
||||||
$c=$bro->filelist($R);
|
$c=$bro->filelist($R);
|
||||||
if ($c===false) $error=$err->errstr();
|
if ($c===false) $error=$err->errstr();
|
||||||
|
@ -223,6 +233,15 @@ echo "<td><a href=\"$vu\">"._("View")."</a>";
|
||||||
} else {
|
} else {
|
||||||
echo "<td> ";
|
echo "<td> ";
|
||||||
}
|
}
|
||||||
|
$e = $bro->is_extractable($R,$c[$i]["name"]);
|
||||||
|
if ($e) {
|
||||||
|
echo "<a href=\"bro_main.php?actextract=1&file=".urlencode($c[$i]["name"])."&R=".urlencode($R)."\">";
|
||||||
|
echo _("Extract");
|
||||||
|
echo "</a>";
|
||||||
|
} else {
|
||||||
|
echo "not extracable";
|
||||||
|
}
|
||||||
|
|
||||||
echo "</td>\n";
|
echo "</td>\n";
|
||||||
} else { // DOSSIER :
|
} else { // DOSSIER :
|
||||||
echo " <td width=\"28\"><input type=\"checkbox\" class=\"inc\" name=\"d[]\" value=\"".htmlentities($c[$i]["name"])."\" /></td>";
|
echo " <td width=\"28\"><input type=\"checkbox\" class=\"inc\" name=\"d[]\" value=\"".htmlentities($c[$i]["name"])."\" /></td>";
|
||||||
|
|
Loading…
Reference in New Issue