From 56949815c692b8ba1da6b03091d0ccb023d0c61e Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Thu, 05 Mar 2009 10:46:46 -0500 Subject: [PATCH] disable the possibility to change the site of a existing shell user. --- interface/web/sites/shell_user_edit.php | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/interface/web/sites/shell_user_edit.php b/interface/web/sites/shell_user_edit.php index d288baa..e2613cb 100644 --- a/interface/web/sites/shell_user_edit.php +++ b/interface/web/sites/shell_user_edit.php @@ -93,6 +93,13 @@ } else { $app->tpl->setVar("username_prefix", $shelluser_prefix); } + + if($this->id > 0) { + //* we are editing a existing record + $app->tpl->setVar("parent_domain_id_disabled", 'disabled="disabled"'); + } else { + $app->tpl->setVar("parent_domain_id_disabled", ''); + } parent::onShowEnd(); } -- Gitblit v1.9.1