From fc9538adab98df5b2e14e814a14bce4c50d2efe7 Mon Sep 17 00:00:00 2001 From: hickert Date: Tue, 21 Nov 2006 11:17:24 +0000 Subject: [PATCH] Made gotoLpdEnable case insensitve git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@5175 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/admin/systems/class_terminalService.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/admin/systems/class_terminalService.inc b/plugins/admin/systems/class_terminalService.inc index 4beecf9e0..305c73224 100644 --- a/plugins/admin/systems/class_terminalService.inc +++ b/plugins/admin/systems/class_terminalService.inc @@ -195,7 +195,7 @@ class termservice extends plugin ksort($this->hardware_list); /* Convert gotoLpdEnable */ - $this->gotoLpdEnable= ($this->gotoLpdEnable == "Yes"); + $this->gotoLpdEnable= preg_match("/yes/",$this->gotoLpdEnable); /* Load hardware list */ $ldap= $this->config->get_ldap_link(); -- 2.30.2