Ignore:
Timestamp:
Oct 9, 2013, 3:25:56 PM (10 years ago)
Author:
mistic100
Message:

add batch manager prefilter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Google2Piwigo/admin/import.php

    r20670 r24816  
    170170    if ($duplicates>0)
    171171    {
    172       array_push($page['infos'], l10n_dec(
    173           'One picture is not displayed because already existing in the database.',
    174           '%d pictures are not displayed because already existing in the database.',
    175           $duplicates
    176         ));
     172      $page['infos'][] = '<a href="admin.php?page=batch_manager&amp;prefilter=picasa">'
     173          .l10n_dec('One picture is not displayed because already existing in the database.', '%d pictures are not displayed because already existing in the database.', $duplicates)
     174        .'</a>';
    177175    }
    178176   
     
    262260    if ($duplicates>0)
    263261    {
    264       array_push($page['infos'], l10n_dec(
    265           '%d picture is not displayed because already existing in the database.',
    266           '%d pictures are not displayed because already existing in the database.',
    267           $duplicates
    268         ));
     262      $page['infos'][] = '<a href="admin.php?page=batch_manager&amp;prefilter=picasa">'
     263          .l10n_dec('One picture is not displayed because already existing in the database.', '%d pictures are not displayed because already existing in the database.', $duplicates)
     264        .'</a>';
    269265    }
    270266   
Note: See TracChangeset for help on using the changeset viewer.