  |
1 | 1 | | <?php |
| |
2 | 2 | | /* |
  |
3 | | - | $Id: header.php,v 1.42 2003/06/10 18:20:38 hpdl Exp $ |
| |
| 3 | + | $Id: header.php 1739 2007-12-20 00:52:16Z hpdl $ |
|
4 | 4 | | |
| |
5 | 5 | | osCommerce, Open Source E-Commerce Solutions |
| |
6 | 6 | | http://www.oscommerce.com |
| |
|
|
 |
… |
|
69 | 69 | | ?> |
| |
70 | 70 | | <table border="0" width="100%" cellspacing="0" cellpadding="2"> |
| |
71 | 71 | | <tr class="headerError"> |
  |
72 | | - | <td class="headerError"><?php echo htmlspecialchars(urldecode($HTTP_GET_VARS['error_message'])); ?></td> |
| |
| 72 | + | <td class="headerError"><?php echo htmlspecialchars(stripslashes(urldecode($HTTP_GET_VARS['error_message']))); ?></td> |
|
73 | 73 | | </tr> |
| |
74 | 74 | | </table> |
| |
75 | 75 | | <?php |
| |
|
|
 |
… |
|
79 | 79 | | ?> |
| |
80 | 80 | | <table border="0" width="100%" cellspacing="0" cellpadding="2"> |
| |
81 | 81 | | <tr class="headerInfo"> |
  |
82 | | - | <td class="headerInfo"><?php echo htmlspecialchars($HTTP_GET_VARS['info_message']); ?></td> |
| |
| 82 | + | <td class="headerInfo"><?php echo htmlspecialchars(stripslashes(urldecode($HTTP_GET_VARS['info_message']))); ?></td> |
  |
83 | 83 | | </tr> |
| |
84 | 84 | | </table> |
| |
85 | 85 | | <?php |