Diff
151
368
368
email.php
  |
1 | 1 | | <?php |
| |
2 | 2 | | /* |
  |
3 | | - | $Id: email.php 151 2005-08-02 14:33:25Z mattice $ |
| |
| 3 | + | $Id: email.php 368 2005-12-22 16:27:23Z hpdl $ |
|
4 | 4 | | |
| |
5 | 5 | | osCommerce, Open Source E-Commerce Solutions |
| |
6 | 6 | | http://www.oscommerce.com |
| |
|
|
 |
… |
|
156 | 156 | | */ |
| |
157 | 157 | | |
| |
158 | 158 | | function add_html($html, $text = NULL, $images_dir = NULL) { |
  |
159 | | - | $this->html = tep_convert_linefeeds(array("\r\n", "\n", "\r"), '<br>', $html); |
| |
| 159 | + | $this->html = tep_convert_linefeeds(array("\r\n", "\n", "\r"), '<br />', $html); |
  |
160 | 160 | | $this->html_text = tep_convert_linefeeds(array("\r\n", "\n", "\r"), $this->lf, $text); |
| |
161 | 161 | | |
| |
162 | 162 | | if (isset($images_dir)) $this->find_html_images($images_dir); |
|