Skip to content

Commit

Permalink
merge r12762 from branch 2.3 to trunk
Browse files Browse the repository at this point in the history
bug 2536 fixed: a new virtual album is now added on top of the list of other
albums in the parent album (instead of bottom).



git-svn-id: http://piwigo.org/svn/trunk@12763 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
plegall committed Dec 17, 2011
1 parent b581ba8 commit f500499
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions admin/include/functions.php
Expand Up @@ -1219,16 +1219,9 @@ function create_virtual_category($category_name, $parent_id=null)

$parent_id = !empty($parent_id) ? $parent_id : 'NULL';

$query = '
SELECT MAX(rank)
FROM '.CATEGORIES_TABLE.'
WHERE id_uppercat '.(is_numeric($parent_id) ? '= '.$parent_id : 'IS NULL').'
;';
list($current_rank) = pwg_db_fetch_row(pwg_query($query));

$insert = array(
'name' => $category_name,
'rank' => ++$current_rank,
'rank' => 0,
'commentable' => boolean_to_string($conf['newcat_default_commentable']),
);

Expand Down Expand Up @@ -1298,6 +1291,8 @@ function create_virtual_category($category_name, $parent_id=null)
;';
pwg_query($query);

update_global_rank();

if ('private' == $insert['status'])
{
add_permission_on_category($inserted_id, array_unique(array_merge(get_admins(), array($user['id']))));
Expand Down

0 comments on commit f500499

Please sign in to comment.