|
@@ -31,8 +31,9 @@ function addr_insert_hidden() {
|
|
|
$identity;
|
|
|
|
|
|
echo '<input type=hidden value="';
|
|
|
- if (substr($body, 0, 1) == "\r")
|
|
|
+ if (substr($body, 0, 1) == "\r") {
|
|
|
echo "\n";
|
|
|
+ }
|
|
|
echo htmlspecialchars($body) . '" name=body>' . "\n" .
|
|
|
'<input type=hidden value="' . htmlspecialchars($subject) .
|
|
|
'" name=subject>' . "\n" .
|
|
@@ -78,11 +79,11 @@ function addr_display_result($res, $includesource = true) {
|
|
|
if ($line % 2) { echo ' bgcolor="' . $color[0] . '"'; }
|
|
|
echo ' nowrap><td nowrap align=center width="5%">' .
|
|
|
'<input type=checkbox name="send_to_search[T' . $line . ']" value = "' .
|
|
|
- htmlspecialchars($row['email']) . '"> To ' .
|
|
|
+ htmlspecialchars($row['email']) . '"> ' . _("To") . ' ' .
|
|
|
'<input type=checkbox name="send_to_search[C' . $line . ']" value = "' .
|
|
|
- htmlspecialchars($row['email']) . '"> Cc ' .
|
|
|
+ htmlspecialchars($row['email']) . '"> ' . _("Cc") . ' ' .
|
|
|
'<input type=checkbox name="send_to_search[B' . $line . ']" value = "' .
|
|
|
- htmlspecialchars($row['email']) . '"> Bcc ' .
|
|
|
+ htmlspecialchars($row['email']) . '"> ' . _("Bcc") . ' ' .
|
|
|
'</td><td nowrap> ' . $row['name'] . ' </td>' .
|
|
|
'<td nowrap> ' . $row['email'] . ' </td>' .
|
|
|
'<td nowrap> ' . $row['label'] . ' </td>';
|
|
@@ -224,4 +225,4 @@ if ($addrquery == '' || sizeof($res) == 0) {
|
|
|
}
|
|
|
|
|
|
?>
|
|
|
-</body></html>
|
|
|
+</body></html>
|