From: cajus Date: Tue, 27 Oct 2009 14:51:36 +0000 (+0000) Subject: Fixed alphabet match X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=95bad57e16e5ecd6c84f686292ef107ab1b70efc;p=gosa.git Fixed alphabet match git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14658 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_filter.inc b/gosa-core/include/class_filter.inc index 86b23cf0d..365f9da63 100644 --- a/gosa-core/include/class_filter.inc +++ b/gosa-core/include/class_filter.inc @@ -418,13 +418,9 @@ class filter { function update() { - /* React on alphabet links if needed */ if (isset($_GET['filter'])){ - $s= mb_substr(validate($_GET['filter']), 0, 1, "UTF8")."*"; - if ($s == "**"){ - $s= "*"; - } + $s= mb_substr(validate($_GET['filter']), 0, 1, "UTF8"); foreach ($this->alphabetElements as $tag) { $this->elementValues[$tag]= $s; }