From 7c16e8f34367970518fc4d272bfcddb9bd2e46d7 Mon Sep 17 00:00:00 2001 From: z0rglub Date: Wed, 17 Sep 2003 20:40:15 +0000 Subject: If we delete a picture which is logically linked to a category, the informations about this category are not updated (number of pictures and date of last picture) -> use of update_category( 'all' ) git-svn-id: http://piwigo.org/svn/trunk@130 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/configuration.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'admin/configuration.php') diff --git a/admin/configuration.php b/admin/configuration.php index b1516bfbb..1714a78bc 100644 --- a/admin/configuration.php +++ b/admin/configuration.php @@ -68,7 +68,14 @@ if ( isset( $_POST['submit'] ) ) while ( $row = mysql_fetch_array( $result ) ) { $site = 'delete_site_'.$row['id']; - if ( $_POST[$site] == 1 ) delete_site( $row['id'] ); + if ( $_POST[$site] == 1 ) + { + delete_site( $row['id'] ); + // if any picture of this site were linked to another categories, we + // have to update the informations of those categories. To make it + // simple, we just update all the categories + update_category( 'all' ); + } } // thumbnail prefix must not contain accentuated characters $old_prefix = $_POST['prefix_thumbnail']; -- cgit v1.2.3