Просмотр исходного кода

I think this fixes the \n"\n"\n"\n" stuff in the address book.

Tyler Akins 24 лет назад
Родитель
Сommit
fcc5206105
1 измененных файлов с 5 добавлено и 5 удалено
  1. 5 5
      src/addrbook_search_html.php

+ 5 - 5
src/addrbook_search_html.php

@@ -46,15 +46,15 @@
       echo '<input type=hidden value="';
       if (substr($body, 0, 1) == "\r")
           echo "\n";
-      echo htmlspecialchars($body) . '" name=body>\n"';
+      echo htmlspecialchars($body) . '" name=body>' . "\n";
       echo '<input type=hidden value="' . htmlspecialchars($subject)
-          . '" name=subject>\n"';
+          . '" name=subject>' . "\n";
       echo '<input type=hidden value="' . htmlspecialchars($send_to)
-          . '" name=send_to>\n"';
+          . '" name=send_to>' . "\n";
       echo "<input type=hidden value=\"" . htmlspecialchars($send_to_cc)
-          . '" name=send_to_cc>\n"';
+          . '" name=send_to_cc>' . "\n";
       echo "<input type=hidden value=\"" . htmlspecialchars($send_to_bcc)
-          . '" name=send_to_bcc>\n"';
+          . '" name=send_to_bcc>' . "\n";
       echo "<input type=hidden value=\"true\" name=from_htmladdr_search>\n";
    }