diff options
author | plegall <plg@piwigo.org> | 2004-12-05 21:28:40 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2004-12-05 21:28:40 +0000 |
commit | 9064686d9990b6830c0cd6a00d95745d3841eb9e (patch) | |
tree | 0d2bc6ee0564041f1836fb63c30cfe00738f211b /template/default/admin/cat_modify.tpl | |
parent | e4ce82fc27e1e10d697815928ef06c692a3f56da (diff) |
- on picture.php, related categories under the element are displayed in
global_rank order
- when adding a new virtual category, initializes its global_rank
- bug fixed : in admin/cat_list, false next rank
- in admin/cat_modify, complete directory is calculated only if category is
not virtual
- admin/picture_modify rewritten : graphically nearer to admin/cat_modify,
virtual associations are back
- update_category partially rewritten : take an array of categories in
parameter, becomes optionnaly recursive, use the set_random_representant
function, set a random representant for categories with elements and no
representant
- bug fixed : on a search results screen, elements belonging to more than 1
category were shown more than once
- bug fixed : in admin/cat_modify, changing a value in a textefield and
hitting enter was setting a new random representant
git-svn-id: http://piwigo.org/svn/trunk@635 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/default/admin/cat_modify.tpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/template/default/admin/cat_modify.tpl b/template/default/admin/cat_modify.tpl index c9b9749b3..8344b269d 100644 --- a/template/default/admin/cat_modify.tpl +++ b/template/default/admin/cat_modify.tpl @@ -13,6 +13,10 @@ <td class="row1"><input type="submit" name="set_random_representant" value="{L_SET_RANDOM_REPRESENTANT}" class="bouton" /></td> </tr> <!-- END representant --> + </table> +</form> +<form action="{F_ACTION}" method="POST"> +<table style="width:100%;"> <!-- BEGIN server --> <tr> <td style="width:50%;"><strong>{L_REMOTE_SITE}</strong></td> @@ -28,7 +32,7 @@ <!-- BEGIN storage --> <tr> <td><strong>{L_STORAGE}</strong></td> - <td class="row1">{CATEGORY_DIR}</td> + <td class="row1">{storage.CATEGORY_DIR}</td> </tr> <!-- END storage --> <tr> |