openrat-cms

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

commit 2c9a9c6e39f92d09d2f199d2e9493cbc8593aad9
parent fc3b481c6d358a44b905368e638b761e44cc00f5
Author: dankert <devnull@localhost>
Date:   Sun, 19 Dec 2004 22:57:02 +0100

Korrektur bei direktem Objektaufruf in object()

Diffstat:
actionClasses/IndexAction.class.php | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/actionClasses/IndexAction.class.php b/actionClasses/IndexAction.class.php @@ -20,7 +20,10 @@ // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // --------------------------------------------------------------------------- // $Log$ -// Revision 1.8 2004-12-19 14:54:31 dankert +// Revision 1.9 2004-12-19 21:57:02 dankert +// Korrektur bei direktem Objektaufruf in object() +// +// Revision 1.8 2004/12/19 14:54:31 dankert // language() und model() korrigiert // // Revision 1.7 2004/12/18 00:16:26 dankert @@ -265,7 +268,7 @@ class IndexAction extends Action $this->callSubAction('show'); } - $objectid = new Object( $this->getRequestId() ); + $object = new Object( $this->getRequestId() ); $object->objectLoadRaw(); Session::setObject( $object );