Diff
153
241
241
email.php
  |
1 | 1 | | <?php |
| |
2 | 2 | | /* |
  |
3 | | - | $Id: email.php 153 2005-08-04 12:57:59Z hpdl $ |
| |
| 3 | + | $Id: email.php 241 2005-11-13 22:56:32Z 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); |
|