From: hickert Date: Tue, 25 Aug 2009 07:24:48 +0000 (+0000) Subject: Fixed mixed up setter and getter for Base. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=27521bfa376ff381f9340ad85abb4bd84c7dc264;p=gosa.git Fixed mixed up setter and getter for Base. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14124 594d385d-05f5-0310-b6e9-bd551577e9d8 --- 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; }