From cd53c8fcd7b6f3d8af741134909b08f747dc191f Mon Sep 17 00:00:00 2001 From: plegall Date: Fri, 18 Oct 2013 19:34:23 +0000 Subject: [PATCH] feature 2968 added: Add link to "edit this album" when managung sub-albums. Patch by msakik. git-svn-id: http://piwigo.org/svn/trunk@24985 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/cat_list.php | 9 +++++++++ admin/themes/default/template/cat_list.tpl | 1 + 2 files changed, 10 insertions(+) diff --git a/admin/cat_list.php b/admin/cat_list.php index 383e4d7f4..baba5e2c9 100644 --- a/admin/cat_list.php +++ b/admin/cat_list.php @@ -273,6 +273,15 @@ SELECT DISTINCT category_id $template->assign('categories', array()); $base_url = get_root_url().'admin.php?page='; + +if (isset($_GET['parent_id'])) +{ + $template->assign( + 'PARENT_EDIT', + $base_url.'album-'.$_GET['parent_id'] + ); +} + foreach ($categories as $category) { $cat_list_url = $base_url.'cat_list'; diff --git a/admin/themes/default/template/cat_list.tpl b/admin/themes/default/template/cat_list.tpl index 89989782d..8b173034c 100644 --- a/admin/themes/default/template/cat_list.tpl +++ b/admin/themes/default/template/cat_list.tpl @@ -60,6 +60,7 @@ jQuery(document).ready(function(){

{'create a new album'|@translate} {if count($categories)}| {'apply automatic sort order'|@translate}{/if} + {if ($PARENT_EDIT)}| {'edit'|@translate}{/if}