Remove extra spaces on notes textarea

This commit is contained in:
nuxsmin
2014-01-20 16:47:49 +01:00
parent ae3943e900
commit aff4182d57

View File

@@ -253,9 +253,7 @@ $maxFileSize = round(SP_Config::getValue('allowed_size') / 1024, 1);
<tr>
<td class="descField"><?php echo _('Notas'); ?></td>
<td class="valField">
<textarea name="notice" cols="30" rows="5" placeholder="<?php echo _('Notas sobre la cuenta'); ?>" maxlength="1000" <?php echo ( ! $showform ) ? 'READONLY' : ''; ?> >
<?php echo ( $action != 'accnew' ) ? $accountData->account_notes : ''; ?>
</textarea>
<textarea name="notice" cols="30" rows="5" placeholder="<?php echo _('Notas sobre la cuenta'); ?>" maxlength="1000" <?php echo ( ! $showform ) ? 'READONLY' : ''; ?> ><?php echo ( $action != 'accnew' ) ? $accountData->account_notes : ''; ?></textarea>
</td>
</tr>
<?php if ( $showform ): ?>
@@ -534,4 +532,4 @@ $maxFileSize = round(SP_Config::getValue('allowed_size') / 1024, 1);
}
});
</script>
<?php endif; ?>
<?php endif; ?>