Skip to content

Commit

Permalink
20 characters max in owner.billingAddress.street default value
Browse files Browse the repository at this point in the history
  • Loading branch information
PaylineGitHub committed Apr 26, 2017
1 parent f24f789 commit 23f9f06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/fieldset/owner.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</div>
<div class="row">
<label for="ownerStreet">Street</label>
<input type="text" name="ownerStreet" id="ownerStreet" value="<?php echo $_SESSION['billingAddressStreet1'] ?>" />
<input type="text" name="ownerStreet" id="ownerStreet" value="<?php echo substr($_SESSION['billingAddressStreet1'],0,20) ?>" />
</div>
<div class="row">
<label for="ownerCityName">City name</label>
Expand Down

0 comments on commit 23f9f06

Please sign in to comment.