Welcome Guest, Not a member yet? Register   Sign In
form_hidden bug
#1

(This post was last modified: 06-01-2016, 06:28 PM by obozdag.)

The code below generates duplicate hidden inputs. Because third arg ('id="old_email"') in third row of code is an extra and it is added mistakenly. But this results in duplicate hidden inputs. So is this a bug?

Code:
<?php echo form_open('/user/edit', 'class="form"'); ?>
<?php echo form_hidden('id', '3'); ?>
<?php echo form_hidden('old_email', '[email protected]', 'id="old_email"'); ?>
<?php echo form_submit('submit', 'Submit'); ?>
<?php echo form_close(); ?>

Print:
<form action="/user/edit" class="form" method="post" accept-charset="utf-8">
<input type="hidden" name="id" value="3">
<input type="hidden" name="id" value="3">
<input type="hidden" name="old_email" value="[email protected]">
<input type="submit" name="submit" value="Submit">
</form>
Reply


Messages In This Thread
form_hidden bug - by obozdag - 06-01-2016, 01:37 AM
RE: form_hidden bug - by Narf - 06-01-2016, 02:50 AM
RE: form_hidden bug - by salain - 06-01-2016, 03:00 AM
RE: form_hidden bug - by cartalot - 06-01-2016, 02:05 PM
RE: form_hidden bug - by PaulD - 06-01-2016, 04:40 PM



Theme © iAndrew 2016 - Forum software by © MyBB