[ postfixadmin-Bugs-2965196 ] Superusers can't edit aliases (SVN 2.4)
Brought to you by:
christian_boltz,
gingerdog
|
From: SourceForge.net <no...@so...> - 2010-03-09 17:56:02
|
Bugs item #2965196, was opened at 2010-03-07 23:52 Message generated for change (Settings changed) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2965196&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: SVN (please specify revision!) >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Colin Viebrock (cviebrock) Assigned to: Nobody/Anonymous (nobody) Summary: Superusers can't edit aliases (SVN 2.4) Initial Comment: A typo in the Smarty template, I think. This fixes it: a# svn diff templates/list-virtual_alias.tpl Index: templates/list-virtual_alias.tpl =================================================================== --- templates/list-virtual_alias.tpl (revision 806) +++ templates/list-virtual_alias.tpl (working copy) @@ -20,7 +20,7 @@ <td>{$item.goto|replace:",":"<br/>"}</td> {/if} <td>{$item.modified}</td> - {if $authentication_has_role.global_admin===true} + {if $authentication_has_role.global_admin==true} {assign var="address" value=$item.address|escape:"url"} <td><a href="edit-active.php?alias={$item.address|escape:"url"}&domain={$fDomain|escape:"url"}&return={$file|escape:"url"}?domain={$fDomain|escape:"url"}&limit={$current_limit|escape:"url"}">{if $item.active==1}{$PALANG.YES}{else}{$PALANG.NO}{/if}</a></td> <td><a href="edit-alias.php?address={$item.address|escape:"url"}&domain={$fDomain|escape:"url"}">{$PALANG.edit}</a></td> ---------------------------------------------------------------------- >Comment By: Christian Boltz (christian_boltz) Date: 2010-03-09 18:56 Message: fixed by Sebastian2009 in SVN r807 BTW: Sebastian, you should now have permissions to close tracker items yourself ;-) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2965196&group_id=191583 |