diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-04-06 02:23:54 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-04-06 02:23:54 +0000 |
commit | d700a5917233fb8049589a9e0aef3d94e87fb320 (patch) | |
tree | 81f8c53ccf908e900638abd117f3dc8719ca67a1 /admin/cat_list.php | |
parent | b9a37cd6f06a19fd48d4a8e546b10c8fb3ff5b33 (diff) |
improvement: urls for tags can contain now only the tag or the id and tag
improvement: urls for category can be now id and category names (instead
of only id)
improvement: added 2 indexes (#image_tag.tag_id and #tags.url_name)
improvement: identification, register, search pages automatically set focus
on first form input
improvement: focus, nofocus css class now valid for all forms
fix: category comment is tag stripped in category_subcats.inc.php
(otherwise issues with html/scripts inside category comment)
git-svn-id: http://piwigo.org/svn/trunk@1131 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/cat_list.php | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/admin/cat_list.php b/admin/cat_list.php index 7917b0a6a..2c659ee3f 100644 --- a/admin/cat_list.php +++ b/admin/cat_list.php @@ -173,7 +173,7 @@ if (isset($_GET['parent_id'])) $navigation.= $conf['level_separator']; $current_category = get_cat_info($_GET['parent_id']); - + $navigation.= get_cat_display_name( $current_category['name'], $base_url.'&parent_id=', @@ -194,7 +194,7 @@ if (isset($_GET['parent_id'])) $template->assign_vars(array( 'CATEGORIES_NAV'=>$navigation, 'F_ACTION'=>$form_action, - + 'L_ADD_VIRTUAL'=>$lang['cat_add'], 'L_SUBMIT'=>$lang['submit'], 'L_STORAGE'=>$lang['storage'], @@ -203,7 +203,7 @@ $template->assign_vars(array( 'L_EDIT'=>$lang['edit'], 'L_DELETE'=>$lang['delete'], )); - + $tpl = array('cat_first','cat_last'); // +-----------------------------------------------------------------------+ // | Categories display | @@ -256,10 +256,10 @@ foreach ($categories as $category) // TODO : not used anymore ? //$images_folder = PHPWG_ROOT_PATH.'template/'; //$images_folder.= $user['template'].'/admin/images'; - + $base_url = PHPWG_ROOT_PATH.'admin.php?page='; $cat_list_url = $base_url.'cat_list'; - + $self_url = $cat_list_url; if (isset($_GET['parent_id'])) { @@ -276,14 +276,15 @@ foreach ($categories as $category) 'U_JUMPTO' => make_index_url( array( 'category' => $category['id'], + 'cat_name' => $category['name'], ) ), - - 'U_CHILDREN' => $cat_list_url.'&parent_id='.$category['id'], + + 'U_CHILDREN' => $cat_list_url.'&parent_id='.$category['id'], 'U_EDIT' => $base_url.'cat_modify&cat_id='.$category['id'], ) ); - + if (empty($category['dir'])) { $template->assign_block_vars( @@ -293,7 +294,7 @@ foreach ($categories as $category) ) ); } - + if ($category['nb_images'] > 0) { $template->assign_block_vars( |