removed draw_chooser_link() calls

This commit is contained in:
Roland Gruber 2005-05-06 09:40:56 +00:00
parent 68a6a94454
commit c3fd53e75e
2 changed files with 1 additions and 7 deletions

View File

@ -174,9 +174,7 @@ if( $is_object_class ) {
<input type="text" <?php
if( $schema_attr->getMaxLength() )
echo "maxlength=\"" . $schema_attr->getMaxLength() . "\" ";
?>name="new_value" size="40" value="" /><?php
// draw the "browse" button next to this input box if this attr houses DNs:
if( is_dn_attr( $attr ) ) draw_chooser_link( "new_value_form.new_value", false ); ?>
?>name="new_value" size="40" value="" />
<?php } ?>
<?php } ?>

View File

@ -470,10 +470,6 @@ foreach( $attrs as $attr => $vals ) {
<?php
// draw a link for popping up the entry browser if this is the type of attribute
// that houses DNs.
if( is_dn_attr( $attr ) )
draw_chooser_link( "edit_form.$input_id", false );
?>