Quick Search:

Mode

Context

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

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

758
 
771
 
771
 
datetime.php
_> 11 <?php
  22 /*
<> 3 -  $Id: datetime.php 758 2006-08-23 12:30:07Z hpdl $
   3+  $Id: datetime.php 771 2006-08-23 15:43:22Z 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;