  |
1 | 1 | | <?php |
| |
2 | 2 | | /* |
  |
3 | | - | $Id: language.php 733 2006-08-20 15:32:32Z hpdl $ |
| |
| 3 | + | $Id: language.php 735 2006-08-21 14:28:40Z hpdl $ |
|
4 | 4 | | |
| |
5 | 5 | | osCommerce, Open Source E-Commerce Solutions |
| |
6 | 6 | | http://www.oscommerce.com |
| |
|
|
 |
… |
|
199 | 199 | | return $this->_languages[$this->_code]['charset']; |
| |
200 | 200 | | } |
| |
201 | 201 | | |
  |
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 | + | |
  |
203 | 207 | | return $this->_languages[$this->_code]['date_format_short']; |
| |
204 | 208 | | } |
| |
205 | 209 | | |