From 272113c4175992de5dee7fed77fa2ab9fdef2850 Mon Sep 17 00:00:00 2001 From: plegall Date: Thu, 11 Sep 2008 22:19:04 +0000 Subject: feature added: ability to set rank from webservice upload. git-svn-id: http://piwigo.org/svn/trunk@2520 68402e56-0260-453c-a942-63ccdbb3a9ee --- tools/piwigo_remote.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools/piwigo_remote.pl') diff --git a/tools/piwigo_remote.pl b/tools/piwigo_remote.pl index 90dc528ac..582aca294 100644 --- a/tools/piwigo_remote.pl +++ b/tools/piwigo_remote.pl @@ -10,7 +10,7 @@ use Getopt::Long; my %opt = (); GetOptions( \%opt, - qw/action=s file=s thumbnail=s category_id=i name=s/ + qw/action=s file=s thumbnail=s category_id=i name=s rank=i/ ); our $ua = LWP::UserAgent->new; @@ -61,6 +61,7 @@ if ($opt{action} eq 'pwg.images.add') { thumbnail_content => $thumbnail_content, category_id => $opt{category_id}, name => $opt{name}, + rank => defined($opt{rank}) ? $opt{rank} : 1, }; my $response = $ua->post( -- cgit v1.2.3