openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 28a46ef8215e927378a884c8d4843ff349adf875
parent 7bb5b0c3dcfc2b566f30d68ad170c713a871e857
Author: dankert <devnull@localhost>
Date:   Sun, 28 Nov 2004 23:32:52 +0100

in getProperties() auch den Typ zurueckgeben

Diffstat:
objectClasses/Object.class.php | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/objectClasses/Object.class.php b/objectClasses/Object.class.php @@ -20,7 +20,10 @@ // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // --------------------------------------------------------------------------- // $Log$ -// Revision 1.6 2004-11-28 16:56:04 dankert +// Revision 1.7 2004-11-28 22:32:52 dankert +// in getProperties() auch den Typ zurueckgeben +// +// Revision 1.6 2004/11/28 16:56:04 dankert // in hasRight() auch Abfrage des Parent-Ordners // // Revision 1.5 2004/11/24 22:06:24 dankert @@ -304,7 +307,8 @@ class Object 'isRoot' =>$this->isRoot, 'languageid' =>$this->languageid, 'modelid' =>$this->modelid, - 'projectid' =>$this->projectid ); + 'projectid' =>$this->projectid, + 'type' =>$this->getType() ); }