From 27521bfa376ff381f9340ad85abb4bd84c7dc264 Mon Sep 17 00:00:00 2001 From: hickert Date: Tue, 25 Aug 2009 07:24:48 +0000 Subject: [PATCH] Fixed mixed up setter and getter for Base. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14124 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/class_listing.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gosa-core/include/class_listing.inc b/gosa-core/include/class_listing.inc index ecaaf244c..89f383f66 100644 --- a/gosa-core/include/class_listing.inc +++ b/gosa-core/include/class_listing.inc @@ -515,13 +515,13 @@ class listing { } - function getBase($base) + function setBase($base) { $this->base= $base; } - function setBase() + function getBase() { return $this->base; } -- 2.30.2