openrat-cms

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

commit 14a87de8a23ecbe481966572d541a705a9129bb1
parent b15ff92e13ba963f7be7013c19d3dfa723233bc4
Author: dankert <devnull@localhost>
Date:   Sun, 19 Dec 2004 21:46:00 +0100

Html-<form>-Tag nicht schliessen

Diffstat:
serviceClasses/Html.class.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/serviceClasses/Html.class.php b/serviceClasses/Html.class.php @@ -169,7 +169,7 @@ class Html $url = Html::url( $action,$subaction,$id ); - $text = '<form name="'.$name.'" target="'.$target.'" action="'.$url.'" method="'.$method.'" enctype="'.$enctype.'" />'."\n"; + $text = '<form name="'.$name.'" target="'.$target.'" action="'.$url.'" method="'.$method.'" enctype="'.$enctype.'" >'."\n"; $text.= '<input type="hidden" name="'.REQ_PARAM_ACTION.'" value="'.$action.'" />'."\n"; $text.= '<input type="hidden" name="'.REQ_PARAM_SUBACTION.'" value="'.$subaction.'" />'."\n";