openrat-cms

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

commit 053b8119128e8a27a7a590b7702e9236df74b2fb
parent 68b0dfe93cf26a31696216e7b15cd62cea693f65
Author: Jan Dankert <devnull@localhost>
Date:   Sat,  2 Dec 2017 23:46:38 +0100

Doppeltes Anführungszeichen im HTML-Source entfernt.

Diffstat:
themes/default/include/html/password/Password.class.php | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/themes/default/include/html/password/Password.class.php b/themes/default/include/html/password/Password.class.php @@ -25,10 +25,11 @@ class PasswordComponent extends Component echo ' maxlength="' . $this->htmlvalue($this->maxlength) . '"'; echo ' class="' . $this->htmlvalue($this->class) . '"'; + echo ' value="'; if (isset($this->default)) - echo ' value="' . $this->htmlvalue($this->default) . '"'; + echo $this->htmlvalue($this->default); else - echo ' value="<?php echo @$' . $this->varname($this->name) . '?>"'; + echo '<?php echo @$' . $this->varname($this->name) . '?>'; echo '" />';