From c358c157e4a3ec2b9b7ebcc1e0cbd8693b3081cd Mon Sep 17 00:00:00 2001 From: Terranom674 Date: Wed, 19 Aug 2026 23:48:06 +0200 Subject: [PATCH] Restore stable watermark profile behavior --- tools/watermark_profiles.inc.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/watermark_profiles.inc.php b/tools/watermark_profiles.inc.php index cd45e25..7ee37bd 100644 --- a/tools/watermark_profiles.inc.php +++ b/tools/watermark_profiles.inc.php @@ -128,7 +128,6 @@ function bratonien_tools_save_watermark_profile() mass_inserts($table, array_keys($data), array($data)); } - bratonien_tools_clear_watermark_cache(); return array('message'=>'Wasserzeichenprofil gespeichert.'); } @@ -159,7 +158,6 @@ function bratonien_tools_delete_watermark_profile() } pwg_query('DELETE FROM '.bratonien_tools_table('watermark_profiles').' WHERE id='.$id); - bratonien_tools_clear_watermark_cache(); return array('message'=>'Wasserzeichenprofil geloescht.'); } @@ -176,7 +174,6 @@ function bratonien_tools_duplicate_watermark_profile() $profile['name'] .= ' (Kopie)'; $profile['created'] = date('Y-m-d H:i:s'); mass_inserts(bratonien_tools_table('watermark_profiles'), array_keys($profile), array($profile)); - bratonien_tools_clear_watermark_cache(); return array('message'=>'Wasserzeichenprofil dupliziert.'); }