  |
1 | 1 | | <?php |
| |
2 | 2 | | /* |
  |
3 | | - | $Id: message_stack.php 199 2005-09-22 15:56:13Z hpdl $ |
| |
| 3 | + | $Id: message_stack.php 273 2005-11-23 16:53:04Z hpdl $ |
|
4 | 4 | | |
| |
5 | 5 | | osCommerce, Open Source E-Commerce Solutions |
| |
6 | 6 | | http://www.oscommerce.com |
| |
|
|
 |
… |
|
47 | 47 | | if ($this->messages[$i]['class'] == $class) { |
| |
48 | 48 | | switch ($this->messages[$i]['type']) { |
| |
49 | 49 | | case 'error': |
  |
50 | | - | $bullet_image = DIR_WS_ICONS . 'error.gif'; |
| |
| 50 | + | $bullet_image = DIR_WS_IMAGES . 'icons/error.gif'; |
|
51 | 51 | | break; |
| |
52 | 52 | | case 'warning': |
  |
53 | | - | $bullet_image = DIR_WS_ICONS . 'warning.gif'; |
| |
| 53 | + | $bullet_image = DIR_WS_IMAGES . 'icons/warning.gif'; |
|
54 | 54 | | break; |
| |
55 | 55 | | case 'success': |
  |
56 | | - | $bullet_image = DIR_WS_ICONS . 'success.gif'; |
| |
| 56 | + | $bullet_image = DIR_WS_IMAGES . 'icons/success.gif'; |
|
57 | 57 | | break; |
| |
58 | 58 | | default: |
  |
59 | | - | $bullet_image = DIR_WS_ICONS . 'bullet_default.gif'; |
| |
| 59 | + | $bullet_image = DIR_WS_IMAGES . 'icons/bullet_default.gif'; |
  |
60 | 60 | | } |
| |
61 | 61 | | |
| |
62 | 62 | | $messages .= '<li style="list-style-image: url(\'' . $bullet_image . '\')">' . tep_output_string($this->messages[$i]['message']) . '</li>'; |