From 43b7d67048ad0adbd30a1bec9320c337d71151d5 Mon Sep 17 00:00:00 2001 From: cajus Date: Mon, 25 Jan 2010 07:44:40 +0000 Subject: [PATCH] Fix encoding of base git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15271 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/class_listing.inc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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= ""; -- 2.30.2