Quick Search:

Mode

Context

Displaying 3 lines of context. None | Less | More | Full

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

1626
 
1739
 
1739
 
header.php
_> 11 <?php
  22 /*
<> 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 $
44 
  55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
     
 !
6969 ?>
  7070 <table border="0" width="100%" cellspacing="0" cellpadding="2">
  7171   <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>
7373   </tr>
  7474 </table>
  7575 <?php
     
 !
7979 ?>
  8080 <table border="0" width="100%" cellspacing="0" cellpadding="2">
  8181   <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>
<_ 8383   </tr>
  8484 </table>
  8585 <?php