openrat-cms

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

commit ddcf7e577e074c95c1c56acd03d92537d14b8b85
parent 6a874ea3ab78bbfecf457a35e658ecec3815f820
Author: dankert <devnull@localhost>
Date:   Tue, 24 Jan 2006 00:01:21 +0100

Neues Formularelement

Diffstat:
themes/default/include/html/hidden.inc.php | 2++
themes/default/include/html/password.inc.php | 2++
themes/default/include/html/upload.inc.php | 2++
3 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/themes/default/include/html/hidden.inc.php b/themes/default/include/html/hidden.inc.php @@ -0,0 +1 @@ +<input type="hidden" name="<?php echo $attr_name ?>" value="<?php echo isset($$attr_name)?$$attr_name:$attr_default ?>" />+ \ No newline at end of file diff --git a/themes/default/include/html/password.inc.php b/themes/default/include/html/password.inc.php @@ -0,0 +1 @@ +<input type="password" name="<?php echo $attr_name ?>" size="<?php echo $attr_size ?>" maxlength="<?php echo $attr_maxlength ?>" class="<?php echo $attr_class ?>" value="<?php echo isset($$attr_name)?$$attr_name:$attr_default ?>" />+ \ No newline at end of file diff --git a/themes/default/include/html/upload.inc.php b/themes/default/include/html/upload.inc.php @@ -0,0 +1 @@ +<input type="file" name="<?php echo $attr_name ?>" class="<?php echo $attr_class ?>" />+ \ No newline at end of file