summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cc8d0d0)
raw | patch | inline | side by side (parent: cc8d0d0)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 19 Apr 2010 12:22:17 +0000 (12:22 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 19 Apr 2010 12:22:17 +0000 (12:22 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17691 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/personal/posix/class_posixAccount.inc | patch | blob | history |
diff --git a/gosa-core/plugins/personal/posix/class_posixAccount.inc b/gosa-core/plugins/personal/posix/class_posixAccount.inc
index 132f09c34288c4aac78374b865ff0b4b95efc9f5..fa9635a348a13b8e6ca700ab0c731378865aba80 100644 (file)
var $ssh= null;
var $sshAcl= "";
- var $GroupRegex= "*";
- var $GroupUserRegex= "*";
- var $SubSearch= false;
-
var $view_logged= false;
/* attribute list for save action */
// Add SSH button if available
$smarty->assign("sshPublicKey", $this->ssh?1:0);
- $smarty->assign("apply", apply_filter());
$smarty->assign("multiple_support" , $this->multiple_support_active);
$display.= $smarty->fetch (get_template_path('generic.tpl', TRUE, dirname(__FILE__)));
return($display);
$this->mustchangepassword = FALSE;
}
}
-
- /* Get regex from alphabet */
- if(isset($_GET['search'])){
- $this->GroupRegex = $_GET['search']."*";
- }
-
- /* Check checkboxes and regexes */
- if(isset($_POST["PosixGroupDialogPosted"])){
-
- if(isset($_POST['SubSearch']) && ($_POST['SubSearch'])){
- $this->SubSearch = true;
- }else{
- $this->SubSearch = false;
- }
- if(isset($_POST['guser'])){
- $this->GroupUserRegex = $_POST['guser'];
- }
- if(isset($_POST['regex'])){
- $this->GroupRegex = $_POST['regex'];
- }
- }
- $this->GroupRegex = preg_replace("/\*\**/","*",$this->GroupRegex);
- $this->GroupUserRegex = preg_replace("/\*\**/","*",$this->GroupUserRegex);
}