From 4e1e16a1ec1cc3fb474ef37a2f21fe407835db7b Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Tue, 16 Nov 2010 19:42:28 +0100 Subject: [PATCH] LSattr_html_select_list :: getPossibleValues() : Fixed notice PHPx --- .../includes/class/class.LSattr_html_select_list.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public_html/includes/class/class.LSattr_html_select_list.php b/public_html/includes/class/class.LSattr_html_select_list.php index 6c00a379..5aacc830 100644 --- a/public_html/includes/class/class.LSattr_html_select_list.php +++ b/public_html/includes/class/class.LSattr_html_select_list.php @@ -99,10 +99,10 @@ class LSattr_html_select_list extends LSattr_html{ } $param=array( - 'filter' => $val['filter'], - 'basedn' => $val['basedn'], - 'scope' => $val['scope'], - 'displayFormat' => $val['display_name_format'], + 'filter' => (isset($val['filter'])?$val['filter']:null), + 'basedn' => (isset($val['basedn'])?$val['basedn']:null), + 'scope' => (isset($val['scope'])?$val['scope']:null), + 'displayFormat' => (isset($val['display_name_format'])?$val['display_name_format']:null), );