From: rettenbe Date: Mon, 3 Mar 2008 14:00:46 +0000 (+0000) Subject: bugfix: accept more complex where-statements too X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a321f4b16caf9e3a4cde853b1ef35f06016ea23b;p=gosa.git bugfix: accept more complex where-statements too git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9242 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-si/modules/GosaSupportDaemon.pm b/gosa-si/modules/GosaSupportDaemon.pm index 5e6baca9e..3e6551f12 100644 --- a/gosa-si/modules/GosaSupportDaemon.pm +++ b/gosa-si/modules/GosaSupportDaemon.pm @@ -269,7 +269,7 @@ sub get_where_statement { if( not 0 == @clause_l ) { $clause_str = join(" AND ", @clause_l); - $clause_str = "WHERE $clause_str "; + $clause_str = "WHERE ($clause_str) "; } }