openrat-cms

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

commit a90594fadeebb08d075729ef9e8fa50e392c9a7c
parent 60e99373ae2e5f97342dc6ecc6bb421c17e77555
Author: dankert <devnull@localhost>
Date:   Wed, 11 Jan 2006 23:52:24 +0100

URLs f?r neue Frames setzen

Diffstat:
actionClasses/MainAction.class.php | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/actionClasses/MainAction.class.php b/actionClasses/MainAction.class.php @@ -20,7 +20,10 @@ // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // --------------------------------------------------------------------------- // $Log$ -// Revision 1.6 2005-01-14 21:41:23 dankert +// Revision 1.7 2006-01-11 22:52:24 dankert +// URLs f?r neue Frames setzen +// +// Revision 1.6 2005/01/14 21:41:23 dankert // Aufruf von lastModified() fuer Conditional-GET // // Revision 1.5 2004/12/19 14:55:50 dankert @@ -70,6 +73,8 @@ class MainAction extends Action // Variablen fuellen $this->setTemplateVar('frame_src_main_menu',Html::url( 'mainmenu' ,$this->getRequestVar('subaction'),$this->getRequestId(),$params ) ); $this->setTemplateVar('frame_src_main_main',Html::url( $this->getRequestVar('subaction'),'' ,$this->getRequestId(),$params ) ); + $this->setTemplateVar( 'frame_src_border' ,Html::url( 'border' ) ); + $this->setTemplateVar( 'frame_src_background',Html::url( 'background' ) ); $this->forward('frameset_main'); // Forward auf View }