diff options
author | z0rglub <z0rglub@piwigo.org> | 2003-08-03 07:31:53 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2003-08-03 07:31:53 +0000 |
commit | 302caee36fcbabd1d8862fa01449877094fa2f95 (patch) | |
tree | e3a91a8dacff68858c95076fb4dfe7a6e54584d9 /admin | |
parent | 2f0149d469120c50763ba76ec2db880962fccf42 (diff) |
Correcting link to page=cat to page=cat_list
git-svn-id: http://piwigo.org/svn/trunk@53 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/cat_list.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/cat_list.php b/admin/cat_list.php index ea744d48d..b58e25d24 100644 --- a/admin/cat_list.php +++ b/admin/cat_list.php @@ -223,7 +223,7 @@ function display_cat_manager( $id_uppercat, $indent, if ( $row['rank'] != $min_rank ) { $vtp->addSession( $sub, 'up' ); - $url = add_session_id( './admin.php?page=cat&up='.$row['id'] ); + $url = add_session_id( './admin.php?page=cat_list&up='.$row['id'] ); $vtp->setVar( $sub, 'up.up_url', $url ); $vtp->closeSession( $sub, 'up' ); } @@ -235,7 +235,7 @@ function display_cat_manager( $id_uppercat, $indent, if ( $row['rank'] != $max_rank ) { $vtp->addSession( $sub, 'down' ); - $url = add_session_id( './admin.php?page=cat&down='.$row['id'] ); + $url = add_session_id( './admin.php?page=cat_list&down='.$row['id']); $vtp->setVar( $sub, 'down.down_url', $url ); $vtp->closeSession( $sub, 'down' ); } |