From a2dc7d90e0ed992f8be375f61e208684ed2629db Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 19 Apr 2010 07:00:24 +0000 Subject: [PATCH] Do not display selectAll checkbox while using singleSelect git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17685 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/class_listing.inc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gosa-core/include/class_listing.inc b/gosa-core/include/class_listing.inc index 6ca5c31ae..c636d7f5b 100644 --- a/gosa-core/include/class_listing.inc +++ b/gosa-core/include/class_listing.inc @@ -304,7 +304,14 @@ class listing { if (preg_match('/Konqueror/i', $_SERVER['HTTP_USER_AGENT'])){ $width= "28px"; } - $result.= "\n"; + $result.= ""; + if($this->multiSelect){ + $result.= ""; + }else{ + $result.= " "; + } + $result.="\n"; } foreach ($this->header as $header) { $result.= $header; -- 2.30.2