diff options
author | plegall <plg@piwigo.org> | 2009-01-08 23:31:49 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2009-01-08 23:31:49 +0000 |
commit | 48c1eef07e14e1d7a25a73fc02fabd628130fa9e (patch) | |
tree | 013ebb8e9308c77ac473f2150957ba15087be514 /include/ws_functions.inc.php | |
parent | 05b847a92a9b7eca1a36a907df8f3c92858ad084 (diff) |
bug 912 fixed: we need an extra original_sum to pwg.images.add API method to
check photo existence. Using the file_sum was a bad idea.
git-svn-id: http://piwigo.org/svn/branches/2.0@3064 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/ws_functions.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ws_functions.inc.php b/include/ws_functions.inc.php index 5c5d23b7a..fd87ef02e 100644 --- a/include/ws_functions.inc.php +++ b/include/ws_functions.inc.php @@ -909,7 +909,7 @@ function ws_images_add($params, &$service) SELECT COUNT(*) AS counter FROM '.IMAGES_TABLE.' - WHERE md5sum = \''.$params['file_sum'].'\' + WHERE md5sum = \''.$params['original_sum'].'\' ;'; list($counter) = mysql_fetch_row(pwg_query($query)); if ($counter != 0) { @@ -1088,7 +1088,7 @@ SELECT 'filesize' => floor(filesize($file_path)/1024), 'width' => $width, 'height' => $height, - 'md5sum' => $params['file_sum'], + 'md5sum' => $params['original_sum'], ); $info_columns = array( |