aboutsummaryrefslogtreecommitdiffstats
path: root/include/ws_functions.inc.php
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2008-09-11 22:19:04 +0000
committerplegall <plg@piwigo.org>2008-09-11 22:19:04 +0000
commit272113c4175992de5dee7fed77fa2ab9fdef2850 (patch)
treed489b2dd91e22f827ff744a19a9743849d875e9f /include/ws_functions.inc.php
parent197d4a92e7a68e9e0455239c17fb19462795e609 (diff)
feature added: ability to set rank from webservice upload.
git-svn-id: http://piwigo.org/svn/trunk@2520 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/ws_functions.inc.php')
-rw-r--r--include/ws_functions.inc.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/ws_functions.inc.php b/include/ws_functions.inc.php
index e305016e3..fbc5d5283 100644
--- a/include/ws_functions.inc.php
+++ b/include/ws_functions.inc.php
@@ -828,6 +828,7 @@ function ws_images_add($params, &$service)
// file_sum
// thumbnail_content
// thumbnail_sum
+ // rank
// $fh_log = fopen('/tmp/php.log', 'w');
// fwrite($fh_log, time()."\n");
@@ -926,7 +927,8 @@ function ws_images_add($params, &$service)
$insert = array(
'category_id' => $params['category_id'],
- 'image_id'=> $image_id,
+ 'image_id' => $image_id,
+ 'rank' => $params['rank'],
);
mass_inserts(
IMAGE_CATEGORY_TABLE,