Show
Ignore:
Timestamp:
09/12/08 00:19:04 (5 years ago)
Author:
plg
Message:

feature added: ability to set rank from webservice upload.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tools/piwigo_remote.pl

    r2519 r2520  
    1111GetOptions( 
    1212    \%opt, 
    13     qw/action=s file=s thumbnail=s category_id=i name=s/ 
     13    qw/action=s file=s thumbnail=s category_id=i name=s rank=i/ 
    1414); 
    1515 
     
    6262        category_id => $opt{category_id}, 
    6363        name => $opt{name}, 
     64        rank => defined($opt{rank}) ? $opt{rank} : 1, 
    6465    }; 
    6566