Quick Search:

Mode

Context

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

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

735
 
770
 
770
 
datetime.php
_> 11 <?php
  22 /*
<> 3 -  $Id: datetime.php 735 2006-08-21 14:28:40Z hpdl $
   3+  $Id: datetime.php 770 2006-08-23 15:39:20Z hpdl $
44 
  55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
     
 !
7474       return mktime($hour, $minute, $second, $month, $day, $year);
  7575     }
  7676 
<>  77+    function fromUnixTimestamp($timestamp) {
   78+      return date('Y-m-d H:i:s', $timestamp);
   79+    }
   80+
<_ 7781     function isLeapYear($year = '') {
  7882       if (empty($year)) {
  7983         $year = $this->year;