Delete picture but keep original Delete picture but keep original
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

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