mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
* avoid scaring users for a minor issue * convert the warning message into a simple info * simplify algorithm for detection and only search on relevant pages (batch manager + sync page)
This commit is contained in:
15
admin.php
15
admin.php
@@ -238,15 +238,14 @@ if ($nb_photos_in_caddie > 0)
|
||||
}
|
||||
|
||||
// any photos with no md5sum ?
|
||||
$nb_no_md5sum = count(get_photos_no_md5sum());
|
||||
if ($nb_no_md5sum > 0)
|
||||
if (in_array($page['page'], array('site_update', 'batch_manager')))
|
||||
{
|
||||
$template->assign(
|
||||
array(
|
||||
'NB_NO_MD5SUM' => $nb_no_md5sum,
|
||||
'U_NO_MD5SUM' => $link_start.'batch_manager&filter=prefilter-no_sync_md5sum',
|
||||
)
|
||||
);
|
||||
$nb_no_md5sum = count(get_photos_no_md5sum());
|
||||
|
||||
if ($nb_no_md5sum > 0)
|
||||
{
|
||||
$page['no_md5sum_number'] = $nb_no_md5sum;
|
||||
}
|
||||
}
|
||||
|
||||
// any orphan photo?
|
||||
|
||||
@@ -470,6 +470,15 @@ $template->assign(
|
||||
)
|
||||
);
|
||||
|
||||
if (isset($page['no_md5sum_number']))
|
||||
{
|
||||
$template->assign(
|
||||
array(
|
||||
'NB_NO_MD5SUM' => $page['no_md5sum_number'],
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | caddie options |
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
@@ -44,28 +44,6 @@ $tabsheet->assign();
|
||||
// | actions |
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
//check if images have no md5sum in database
|
||||
$query = '
|
||||
SELECT COUNT(*)
|
||||
FROM '.CATEGORIES_TABLE.'
|
||||
WHERE dir IS NOT NULL
|
||||
;';
|
||||
list($counter) = pwg_db_fetch_row(pwg_query($query));
|
||||
if ($counter > 0)
|
||||
{
|
||||
$query = '
|
||||
SELECT COUNT(*)
|
||||
FROM '.IMAGES_TABLE.'
|
||||
WHERE storage_category_id IS NOT NULL
|
||||
AND md5sum IS NULL
|
||||
;';
|
||||
list($counter) = pwg_db_fetch_row(pwg_query($query));
|
||||
if ($counter > 0)
|
||||
{
|
||||
$page['warnings'][] = '<a href="admin.php?page=batch_manager&filter=prefilter-no_sync_md5sum">'.l10n('Some checksums are missing.').'<i class="icon-right"></i></a>';
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($page['nb_pending_comments']))
|
||||
{
|
||||
$message = l10n('User comments').' <i class="icon-chat"></i> ';
|
||||
|
||||
@@ -67,6 +67,11 @@ else
|
||||
$site_reader = new LocalSiteReader($site_url);
|
||||
}
|
||||
|
||||
if (isset($page['no_md5sum_number']))
|
||||
{
|
||||
$page['messages'][] = '<a href="admin.php?page=batch_manager&filter=prefilter-no_sync_md5sum">'.l10n('Some checksums are missing.').'<i class="icon-right"></i></a>';
|
||||
}
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Quick sync |
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
Reference in New Issue
Block a user