Diff
444
476
476
email.php
  |
1 | 1 | | <?php |
| |
2 | 2 | | /* |
  |
3 | | - | $Id: email.php 444 2006-02-20 12:55:57Z hpdl $ |
| |
| 3 | + | $Id: email.php 476 2006-03-25 16:08:42Z hpdl $ |
|
4 | 4 | | |
| |
5 | 5 | | osCommerce, Open Source E-Commerce Solutions |
| |
6 | 6 | | http://www.oscommerce.com |
| |
|
|
 |
… |
|
473 | 473 | | */ |
| |
474 | 474 | | |
| |
475 | 475 | | function send($to_name, $to_addr, $from_name, $from_addr, $subject = '', $headers = '') { |
  |
476 | | - | if ((strpos($to_name, "\n") !== false) || (sstrpos($to_name, "\r") !== false)) { |
| |
| 476 | + | if ((strpos($to_name, "\n") !== false) || (strpos($to_name, "\r") !== false)) { |
  |
477 | 477 | | return false; |
| |
478 | 478 | | } |
| |
479 | 479 | | |
|