Add newline after <textarea> because it is always removed by the browser per spec...
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 6 Jul 2017 02:36:51 +0000 (02:36 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 6 Jul 2017 02:36:51 +0000 (02:36 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14699 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/options_identities.php
templates/default/compose_body.tpl
templates/default/options_advidentity_list.tpl
templates/default/textarea.tpl
templates/default_advanced/compose_body.tpl

index 6467a0f2d6d2d117996a03ca787ddd1dce7eb1db..6517349a5f30bc278fb75f91df43afebd969a188 100644 (file)
@@ -230,7 +230,7 @@ function sti_textarea( $title, $name, $data, $bgcolor ) {
     $str = '';
     $str .= '<tr' . $bgcolor . ">\n";
     $str .= '  <td style="white-space: nowrap;text-align:right;">' . $title . ' </td>' . "\n";
-    $str .= '  <td> <textarea name="' . $name . '" cols="50" rows="5">'. sm_encode_html_special_chars($data) . '</textarea> </td>' . "\n";
+    $str .= '  <td> <textarea name="' . $name . '" cols="50" rows="5">'. "\n" . sm_encode_html_special_chars($data) . '</textarea> </td>' . "\n";
     $str .= '</tr>';
 
     return $str;
index 62940cc4f151368e0720271eb810a0e934cd674a..368b535285304d776de3c3dd700789752ba47148 100644 (file)
@@ -26,7 +26,8 @@ extract($t);
 <table cellspacing="0" class="table1">
  <tr>
   <td style="text-align: center">
-   <textarea name="body" id="body" rows="<?php echo $editor_height; ?>" cols="<?php echo $editor_width; ?>" <?php if ($accesskey_compose_body != 'NONE') echo 'accesskey="' . $accesskey_compose_body . '" '; echo $input_onfocus; ?>><?php echo $body; ?></textarea>
+   <textarea name="body" id="body" rows="<?php echo $editor_height; ?>" cols="<?php echo $editor_width; ?>" <?php if ($accesskey_compose_body != 'NONE') echo 'accesskey="' . $accesskey_compose_body . '" '; echo $input_onfocus; ?>>
+<?php echo $body; ?></textarea>
   </td>
  </tr>
  <?php
index a239589d6238dcaf54ce2ad63b35834eb6b04970..3ed7b709013d8575cb9f473152e8ea1b036a93f6 100644 (file)
@@ -82,7 +82,8 @@ extract($t);
       <?php echo _("Signature"); ?>
      </td>
      <td class="fieldValue">
-      <textarea name="newidentities[<?php echo $index; ?>][signature]" cols="50" rows="5"><?php echo $identity['Signature']; ?></textarea>
+      <textarea name="newidentities[<?php echo $index; ?>][signature]" cols="50" rows="5">
+<?php echo $identity['Signature']; ?></textarea>
      </td>
     </tr>
     <?php /* FIXME: No hooks in templates! */ $temp = array('', &$identity['New'], &$index); echo concat_hook_function('options_identities_table', $temp); ?>
index 298492ee5cb0e177ecabdf6b01a9128586739b1a..365e3bb444757752455a5283bba95d83e40818ac 100644 (file)
@@ -32,6 +32,6 @@ echo '<textarea name="' . $name . '" rows="' . $rows . '" cols="' . $cols . '"';
 foreach ($aAttribs as $key => $value) {
     echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"');
 }
-echo '>' . $text . "</textarea>\n";
+echo ">\n" . $text . "</textarea>\n";
 
 
index c3e0fadb599bd101b45cd4af9d691aa2e3df6577..f0d816017eb4f06f902ffbfee15bab9214c72d15 100644 (file)
@@ -26,7 +26,8 @@ extract($t);
 <table cellspacing="0" class="table1">
  <tr>
   <td style="text-align: center">
-   <textarea name="body" id="body" rows="<?php echo $editor_height; ?>" cols="<?php echo $editor_width; ?>" <?php if ($accesskey_compose_body != 'NONE') echo 'accesskey="' . $accesskey_compose_body . '" '; echo $input_onfocus; ?>><?php echo $body; ?></textarea>
+   <textarea name="body" id="body" rows="<?php echo $editor_height; ?>" cols="<?php echo $editor_width; ?>" <?php if ($accesskey_compose_body != 'NONE') echo 'accesskey="' . $accesskey_compose_body . '" '; echo $input_onfocus; ?>>
+<?php echo $body; ?></textarea>
 
 <?php if (checkForJavascript()) // Display text area resizing handle