openrat-cms

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

commit 5981987b6b9e87c803c5888b988500fdab5a795f
parent ef8b94f0fcfc9f0dccf12ca81596d80c6c503220
Author: dankert <devnull@localhost>
Date:   Wed, 31 Jan 2007 23:23:21 +0100

Attribut "id" aufgenommen.

Diffstat:
themes/default/include/html/input.inc.php | 4++--
themes/default/include/html/selectbox.inc.php | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/themes/default/include/html/input.inc.php b/themes/default/include/html/input.inc.php @@ -1 +1 @@ -<input 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 ?>" onxxxMouseOver="this.focus();" />- \ No newline at end of file +<input id="id<?php echo $attr_name ?>" 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 ?>" onxxxMouseOver="this.focus();" />+ \ No newline at end of file diff --git a/themes/default/include/html/selectbox.inc.php b/themes/default/include/html/selectbox.inc.php @@ -1,4 +1,4 @@ -<select size="1" name="<?php echo $attr_name ?>" onchange="<?php echo $attr_onchange ?>" title="<?php echo $attr_title ?>" class="<?php echo $attr_class ?>"<?php +<select size="1" id="id<?php echo $attr_name ?>" name="<?php echo $attr_name ?>" onchange="<?php echo $attr_onchange ?>" title="<?php echo $attr_title ?>" class="<?php echo $attr_class ?>"<?php if (count($$attr_list)==1) echo ' disabled="disabled"' ?>><?php foreach( $$attr_list as $box_key=>$box_value )