openrat-cms

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

commit d108958974405f0e3f422d6fbafae597d42529e1
parent b7bf2fe42819dd826bdb1d5c134f21a0f58dac72
Author: dankert <devnull@localhost>
Date:   Sat, 25 Dec 2010 23:15:36 +0100

Nach Profildaten-Speichern: Zeichensatz und Stil in die Sitzung speichern.

Diffstat:
actionClasses/ProfileAction.class.php | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/actionClasses/ProfileAction.class.php b/actionClasses/ProfileAction.class.php @@ -50,7 +50,9 @@ class ProfileAction extends Action $this->user->fullname = $this->getRequestVar('fullname'); $this->user->tel = $this->getRequestVar('tel' ); $this->user->desc = $this->getRequestVar('desc' ); - $this->user->style = $this->getRequestVar('style' ); + $this->user->style = $this->getRequestVar('style' ); + + $this->setStyle( $this->user->style ); // Style sofort anwenden if ( !empty($this->user->fullname) ) {