Quick Search:

Mode

Context

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

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

757
 
758
 
758
 
language.php
_> 11 <?php
  22 /*
<> 3 -  $Id: language.php 757 2006-08-23 12:22:54Z hpdl $
   3+  $Id: language.php 758 2006-08-23 12:30:07Z hpdl $
44 
  55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
     
 !
199199       return $this->_languages[$this->_code]['charset'];
  200200     }
  201201 
<> 202 -    function getDateFormatShort() {
   202+    function getDateFormatShort($with_time = false) {
   203+      if ($with_time === true) {
   204+        return $this->_languages[$this->_code]['date_format_short'] . ' ' . $this->getTimeFormat();
   205+      }
   206+
<_ 203207       return $this->_languages[$this->_code]['date_format_short'];
  204208     }
  205209