Skip to content

Commit

Permalink
* [MOD] Increased account notes field char length . Thanks to @davidkast
Browse files Browse the repository at this point in the history
 for the feedback.
  • Loading branch information
nuxsmin committed Mar 2, 2017
1 parent e97a9c5 commit a408962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/themes/material-blue/views/account/account.inc
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<textarea class="mdl-textfield__input mdl-color-text--indigo-400" rows="3" id="notes"
name="notes" tabindex="9"
maxlength="1000" <?php echo $readonly; ?>><?php echo $gotData ? $accountData->getAccountNotes() : ''; ?></textarea>
maxlength="5000" <?php echo $readonly; ?>><?php echo $gotData ? $accountData->getAccountNotes() : ''; ?></textarea>
<label class="mdl-textfield__label"
for="notes"><?php echo __('Notas sobre la cuenta'); ?></label>
</div>
Expand Down

0 comments on commit a408962

Please sign in to comment.