SF.net SVN: postfixadmin:[1307] trunk
Brought to you by:
christian_boltz,
gingerdog
From: <chr...@us...> - 2011-12-26 16:08:30
|
Revision: 1307 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=1307&view=rev Author: christian_boltz Date: 2011-12-26 16:08:24 +0000 (Mon, 26 Dec 2011) Log Message: ----------- adminlistadmin.tpl: - use edit.php to switch active status for domains edit-active-admin.php: - deleted, obsoleted by using edit.php configs/menu.conf: - remove now superfluous url_edit_active_admin Modified Paths: -------------- trunk/configs/menu.conf trunk/templates/adminlistadmin.tpl Removed Paths: ------------- trunk/edit-active-admin.php Modified: trunk/configs/menu.conf =================================================================== --- trunk/configs/menu.conf 2011-12-26 16:02:14 UTC (rev 1306) +++ trunk/configs/menu.conf 2011-12-26 16:08:24 UTC (rev 1307) @@ -43,5 +43,4 @@ form_search = <form name="search" method="post" action="list-virtual.php"><input name="search" size="10" /></form> [adminlistadmin] -url_edit_active_admin = edit-active-admin.php url_edit_admin = edit.php?table=admin Deleted: trunk/edit-active-admin.php =================================================================== --- trunk/edit-active-admin.php 2011-12-26 16:02:14 UTC (rev 1306) +++ trunk/edit-active-admin.php 2011-12-26 16:08:24 UTC (rev 1307) @@ -1,59 +0,0 @@ -<?php -/** - * Postfix Admin - * - * LICENSE - * This source file is subject to the GPL license that is bundled with - * this package in the file LICENSE.TXT. - * - * Further details on the project are available at : - * http://www.postfixadmin.com or http://postfixadmin.sf.net - * - * @version $Id$ - * @license GNU GPL v2 or later. - * - * File: edit-active-admin.php - * Edit an active administrator. This is used as a 'toggle' page from list-admin. - * - * Template File: message.tpl - * - * Template Variables: - * - * none - * - * Form POST \ GET Variables: - * - * fUsername - */ - -require_once('common.php'); - -authentication_require_role('global-admin'); - -if ($_SERVER['REQUEST_METHOD'] == "GET") -{ - if (isset ($_GET['username'])) $fUsername = escape_string ($_GET['username']); - - $sqlSet='active=1-active'; - if ('pgsql'==$CONF['database_type']) $sqlSet='active=NOT active'; - - $result = db_query ("UPDATE $table_admin SET $sqlSet,modified=NOW() WHERE username='$fUsername'"); - if ($result['rows'] != 1) - { - $error = 1; - flash_error($PALANG['pAdminEdit_admin_result_error']); - } - - if ($error != 1) - { - header ("Location: list-admin.php"); - exit; - } -} -$smarty->assign ('smarty_template', 'message'); -$smarty->display ('index.tpl'); - - -/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */ - -?> Modified: trunk/templates/adminlistadmin.tpl =================================================================== --- trunk/templates/adminlistadmin.tpl 2011-12-26 16:02:14 UTC (rev 1306) +++ trunk/templates/adminlistadmin.tpl 2011-12-26 16:08:24 UTC (rev 1307) @@ -18,7 +18,7 @@ {/if} </td> <td>{$admin.modified}</td> - <td><a href="{#url_edit_active_admin#}&edit={$admin.username|escape:"url"}">{$admin._active}</a></td> + <td><a href="{#url_edit_admin#}&edit={$admin.username|escape:"url"}&active={if ($admin.active==0)}1{else}0{/if}">{$admin._active}</a></td> <td><a href="{#url_edit_admin#}&edit={$admin.username|escape:"url"}">{$PALANG.edit}</a></td> <td><a href="{#url_delete#}?table=admin&delete={$admin.username|escape:"url"}" onclick="return confirm ('{$PALANG.confirm}{$PALANG.pAdminList_admin_username}: {$admin.username}');">{$PALANG.del}</a></td> </tr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |