Skip to content

Commit

Permalink
bug fixed: now that WebService method pwg.images.add create image rec…
Browse files Browse the repository at this point in the history
…ords

with no storage_category_id, we allow this field to be null in the
administration code.


git-svn-id: http://piwigo.org/svn/trunk@2575 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
plegall committed Sep 23, 2008
1 parent 8ffef25 commit 52f0cce
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 13 deletions.
25 changes: 17 additions & 8 deletions admin/element_set_global.php
Expand Up @@ -107,9 +107,13 @@
INNER JOIN '.IMAGES_TABLE.' ON image_id = id
WHERE category_id = '.$_POST['dissociate'].'
AND id IN ('.implode(',', $collection).')
AND category_id != storage_category_id
AND (
category_id != storage_category_id
OR storage_category_id IS NULL
)
;';
$dissociables = array_from_query($query, 'id');
echo '<pre>'; print_r($dissociables); echo '</pre>';

if (!empty($dissociables))
{
Expand Down Expand Up @@ -245,14 +249,19 @@
if (count($page['cat_elements_id']) > 0)
{
$query = '
SELECT DISTINCT(category_id) AS id, c.name, uppercats, global_rank
FROM '.IMAGE_CATEGORY_TABLE.' AS ic,
'.CATEGORIES_TABLE.' AS c,
'.IMAGES_TABLE.' AS i
SELECT
DISTINCT(category_id) AS id,
c.name,
c.uppercats,
c.global_rank
FROM '.IMAGE_CATEGORY_TABLE.' AS ic
JOIN '.CATEGORIES_TABLE.' AS c ON c.id = ic.category_id
JOIN '.IMAGES_TABLE.' AS i ON i.id = ic.image_id
WHERE ic.image_id IN ('.implode(',', $page['cat_elements_id']).')
AND ic.category_id = c.id
AND ic.image_id = i.id
AND ic.category_id != i.storage_category_id
AND (
ic.category_id != i.storage_category_id
OR i.storage_category_id IS NULL
)
;';
display_select_cat_wrapper($query, array(), 'dissociate_options', true);
}
Expand Down
1 change: 1 addition & 0 deletions admin/include/functions.php
Expand Up @@ -1057,6 +1057,7 @@ function update_path()
$query = '
SELECT DISTINCT(storage_category_id)
FROM '.IMAGES_TABLE.'
WHERE storage_category_id IS NOT NULL
;';
$cat_ids = array_from_query($query, 'storage_category_id');
$fulldirs = get_fulldirs($cat_ids);
Expand Down
22 changes: 18 additions & 4 deletions admin/picture_modify.php
Expand Up @@ -177,7 +177,12 @@
;';
$row = mysql_fetch_array(pwg_query($query));

$storage_category_id = $row['storage_category_id'];
$storage_category_id = null;
if (!empty($row['storage_category_id']))
{
$storage_category_id = $row['storage_category_id'];
}

$image_file = $row['file'];

// tags
Expand Down Expand Up @@ -397,13 +402,22 @@
SELECT id,name,uppercats,global_rank
FROM '.CATEGORIES_TABLE.'
INNER JOIN '.IMAGE_CATEGORY_TABLE.' ON id = category_id
WHERE image_id = '.$_GET['image_id'].'
AND id != '.$storage_category_id.'
WHERE image_id = '.$_GET['image_id'];
if (isset($storage_category_id))
{
$query.= '
AND id != '.$storage_category_id;
}
$query.= '
;';
display_select_cat_wrapper($query, array(), 'associated_options');

$result = pwg_query($query);
$associateds = array($storage_category_id);
$associateds = array();
if (isset($storage_category_id))
{
array_push($associateds, $storage_category_id);
}
while ($row = mysql_fetch_array($result))
{
array_push($associateds, $row['id']);
Expand Down
1 change: 0 additions & 1 deletion admin/rating.php
Expand Up @@ -167,7 +167,6 @@
i.file,
i.tn_ext,
i.average_rate,
i.storage_category_id,
MAX(r.date) AS recently_rated,
COUNT(r.rate) AS nb_rates,
SUM(r.rate) AS sum_rates,
Expand Down

0 comments on commit 52f0cce

Please sign in to comment.