From: cajus Date: Mon, 25 Jan 2010 07:44:40 +0000 (+0000) Subject: Fix encoding of base X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=43b7d67048ad0adbd30a1bec9320c337d71151d5;p=gosa.git Fix encoding of base git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15271 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_listing.inc b/gosa-core/include/class_listing.inc index 2ac0c8e4f..651e37f9e 100644 --- a/gosa-core/include/class_listing.inc +++ b/gosa-core/include/class_listing.inc @@ -486,7 +486,7 @@ class listing { // Save base if (isset($_POST['BASE']) && $this->baseMode) { - $base= get_post('BASE'); + $base= base64_decode(get_post('BASE')); if (isset($this->bases[$base])) { $this->base= $base; session::global_set("CurrentMainBase", $this->base); @@ -668,7 +668,6 @@ class listing { $result= "";