From aa7a002a4e5c5edc0377b14497f0dd166e2071bb Mon Sep 17 00:00:00 2001 From: Javier Sánchez Parra Date: Mon, 25 Oct 2021 13:54:38 +0200 Subject: Support cache cleaning for tiptorrent image parts Tiptorrent downloads and saves images to the cache in parts. With this commit, WebConsole shows and deletes all parts as one. --- admin/WebConsole/comandos/EliminarImagenCache.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/admin/WebConsole/comandos/EliminarImagenCache.php b/admin/WebConsole/comandos/EliminarImagenCache.php index 6c9e92ba..60a24cea 100644 --- a/admin/WebConsole/comandos/EliminarImagenCache.php +++ b/admin/WebConsole/comandos/EliminarImagenCache.php @@ -348,6 +348,10 @@ switch($ambito){ $ima[$x] = str_replace(".img.diff", "", $ima[$x]); //quitar todos los .img $ima[$x]=trim($ima[$x]); $nombreimagenes[]="f-".$ima[$x]; + } elseif (preg_match("/\.[0-3]/", $ima[$x])) { + $ima[$x] = preg_replace("/\.img\.[0-3]/", "", $ima[$x]); + $ima[$x] = trim($ima[$x]); + $nombreimagenes[] = "f-".$ima[$x]; }else{ $ima[$x] = str_replace(".img", "", $ima[$x]); //quitar todos los .img $ima[$x]=trim($ima[$x]); -- cgit v1.2.3-18-g5258