openrat-cms

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

commit 08b00d63cf372762771fca5701323c22804ff9b9
parent 9dcd689d0363440cd57a837efe05d74d833a2a78
Author: dankert <devnull@localhost>
Date:   Sun, 25 Oct 2009 10:51:28 +0100

Beim Elementnamen mehr Zeichen erlauben

Diffstat:
actionClasses/ElementAction.class.php | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/actionClasses/ElementAction.class.php b/actionClasses/ElementAction.class.php @@ -51,8 +51,8 @@ class ElementAction extends Action */ function savename() { - $this->element->name = $this->getRequestVar('name' ,'abc'); - $this->element->desc = $this->getRequestVar('description','all'); + $this->element->name = $this->getRequestVar('name' ,'alphanum'); + $this->element->desc = $this->getRequestVar('description','all' ); $this->element->save(); $this->element->load();