Delete picture but keep original Delete picture but keep original
 

News:

CPG Release 1.6.28
added submissions from {406man}
cleaned up a few PHP (8.4) deprecations
fixed PHP deprecation in calendar
removed security vulnerability
(please upgrade when possible)

Main Menu

Delete picture but keep original

Started by Antax, May 05, 2006, 05:07:17 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Antax

Is there a way to have Coppermine delete the thumb_ and normal_ but leave the original picture if it is deleted?

Stramm

in delete.php find
    $files = array($dir . $file, $dir . $CONFIG['normal_pfx'] . $file, $dir . $CONFIG['thumb_pfx'] . $file);

and replace with
    $files = array($dir . $CONFIG['normal_pfx'] . $file, $dir . $CONFIG['thumb_pfx'] . $file);

Antax