Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    •  
      CommentAuthorRageRacer
    • CommentTimeDec 22nd 2008 edited
     
    I did this to mine to make it easier.
    Here is how I did it incase any one else is interested.

    This will add the Invert Checkbox Selection link above the Import Photos list.


    Find:

    if (count($files) > 0)
    $output .= '<p class="actions">' . sprintf(plog_tr
    ('You are currently looking at <strong>%d</strong> image(s) within the <strong>%s</strong>
    directory.<br/>Creating thumbnails: %s done.'),count
    ($files),$show_directory,'<span id="progress">0%</span>') . '</p>';


    After add:

    if (count($files) != 0)
    $output .= '</table><a href="#" onclick="checkAll
    (document.getElementById(\'uploadForm\'));
    return false; ">' . plog_tr('Invert Checkbox Selection') . '</a>';


    ----