aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2015-12-17 14:00:17 +0100
committerplegall <plg@piwigo.org>2015-12-17 14:00:17 +0100
commitf66c27b731e5b6ed4d8c58fd89cf2156ebeef75a (patch)
tree8b18f018d726ae1bf5e4c1dffc0130a9a00c9d9b /admin
parentca238de66d4b6801c4cd817c27effcf18a211da2 (diff)
indentation
Diffstat (limited to 'admin')
-rw-r--r--admin/site_update.php80
1 files changed, 40 insertions, 40 deletions
diff --git a/admin/site_update.php b/admin/site_update.php
index ae77960ae..411a527c9 100644
--- a/admin/site_update.php
+++ b/admin/site_update.php
@@ -571,61 +571,61 @@ SELECT id, path
$logger->debug('existing_ids', 'sync', $existing_ids);
- if (count($existing_ids) > 0)
- {
- $db_formats = array();
+ if (count($existing_ids) > 0)
+ {
+ $db_formats = array();
- // find formats for existing photos
- $query = '
+ // find formats for existing photos (already in database)
+ $query = '
SELECT *
FROM '.IMAGE_FORMAT_TABLE.'
WHERE image_id IN ('.implode(',', $existing_ids).')
;';
- $result = pwg_query($query);
- while ($row = pwg_db_fetch_assoc($result))
- {
- if (!isset($db_formats[$row['image_id']]))
+ $result = pwg_query($query);
+ while ($row = pwg_db_fetch_assoc($result))
{
- $db_formats[$row['image_id']] = array();
+ if (!isset($db_formats[$row['image_id']]))
+ {
+ $db_formats[$row['image_id']] = array();
+ }
+
+ $db_formats[$row['image_id']][$row['ext']] = $row['format_id'];
}
- $db_formats[$row['image_id']][$row['ext']] = $row['format_id'];
- }
-
- $formats_to_delete = array();
+ $formats_to_delete = array();
- foreach ($db_formats as $image_id => $formats)
- {
- $image_formats_to_delete = array_diff_key($formats, $fs[ $db_elements[$image_id] ]['formats']);
- $logger->debug('image_formats_to_delete', 'sync', $image_formats_to_delete);
- foreach ($image_formats_to_delete as $ext => $format_id)
+ foreach ($db_formats as $image_id => $formats)
{
- $formats_to_delete[] = $format_id;
-
- $infos[] = array(
- 'path' => $db_elements[$image_id],
- 'info' => l10n('format %s removed', $ext)
- );
- }
+ $image_formats_to_delete = array_diff_key($formats, $fs[ $db_elements[$image_id] ]['formats']);
+ $logger->debug('image_formats_to_delete', 'sync', $image_formats_to_delete);
+ foreach ($image_formats_to_delete as $ext => $format_id)
+ {
+ $formats_to_delete[] = $format_id;
+
+ $infos[] = array(
+ 'path' => $db_elements[$image_id],
+ 'info' => l10n('format %s removed', $ext)
+ );
+ }
- $image_formats_to_insert = array_diff_key($fs[ $db_elements[$image_id] ]['formats'], $formats);
- $logger->debug('image_formats_to_insert', 'sync', $image_formats_to_insert);
- foreach ($image_formats_to_insert as $ext => $filesize)
- {
- $insert_formats[] = array(
- 'image_id' => $image_id,
- 'ext' => $ext,
- 'filesize' => $filesize,
- );
+ $image_formats_to_insert = array_diff_key($fs[ $db_elements[$image_id] ]['formats'], $formats);
+ $logger->debug('image_formats_to_insert', 'sync', $image_formats_to_insert);
+ foreach ($image_formats_to_insert as $ext => $filesize)
+ {
+ $insert_formats[] = array(
+ 'image_id' => $image_id,
+ 'ext' => $ext,
+ 'filesize' => $filesize,
+ );
- $infos[] = array(
- 'path' => $db_elements[$image_id],
- 'info' => l10n('format %s added', $ext)
- );
+ $infos[] = array(
+ 'path' => $db_elements[$image_id],
+ 'info' => l10n('format %s added', $ext)
+ );
+ }
}
}
}
- }
if (!$simulate)