Merge pull request #437 from PrestaEdit/patch-35

[-] Class: Tools / displayDate (displayParameterAsDeprecated)
This commit is contained in:
Vincent Augagneur
2013-05-20 06:22:59 -07:00
+7 -2
View File
@@ -605,13 +605,18 @@ class ToolsCore
* Display date regarding to language preferences
*
* @param string $date Date to display format UNIX
* @param integer $id_lang Language id
* @param integer $id_lang Language id DEPRECATED
* @param boolean $full With time or not (optional)
* @param string $separator DEPRECATED
* @return string Date
*/
public static function displayDate($date, $id_lang, $full = false, $separator = '-')
public static function displayDate($date, $id_lang = null, $full = false, $separator = null)
{
if ($id_lang !== null)
Tools::displayParameterAsDeprecated('id_lang');
if ($separator !== null)
Tools::displayParameterAsDeprecated('separator');
if (!$date || !($time = strtotime($date)))
return $date;