Changeset 17982


Ignore:
Timestamp:
Sep 18, 2012, 1:46:56 PM (12 years ago)
Author:
plg
Message:

merge r17980 from trunk to branch 2.4

little code refactoring over r17424

bug fixed on Edit Photo page when associating with no album.

Location:
branches/2.4/admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.4/admin/include/functions.php

    r17981 r17982  
    16031603    JOIN '.IMAGES_TABLE.' ON image_id=id
    16041604  WHERE id IN ('.implode(',', $images).')
    1605     '.((is_array($categories) and count($categories)>0) ? 'AND category_id NOT IN ('.implode(',', $categories).')' : null).'
     1605';
     1606 
     1607  if (is_array($categories) and count($categories) > 0)
     1608  {
     1609    $query.= '
     1610    AND category_id NOT IN ('.implode(',', $categories).')
     1611';
     1612  }
     1613
     1614  $query.= '
    16061615    AND (storage_category_id IS NULL OR storage_category_id != category_id)
    16071616;';
  • branches/2.4/admin/picture_modify.php

    r16335 r17982  
    172172
    173173  // association to albums
     174  if (!isset($_POST['associate']))
     175  {
     176    $_POST['associate'] = array();
     177  }
    174178  move_images_to_categories(array($_GET['image_id']), $_POST['associate']);
    175179
Note: See TracChangeset for help on using the changeset viewer.