From: <ma...@us...> - 2012-01-10 21:18:29
|
Revision: 145 http://freexoopservice.svn.sourceforge.net/freexoopservice/?rev=145&view=rev Author: mageg Date: 2012-01-10 21:18:22 +0000 (Tue, 10 Jan 2012) Log Message: ----------- Fixed bug with 2.5.4 (for french version). Modified Paths: -------------- tdmdownloads/trunk/class/tdmdownloads_downloads.php Modified: tdmdownloads/trunk/class/tdmdownloads_downloads.php =================================================================== --- tdmdownloads/trunk/class/tdmdownloads_downloads.php 2011-11-27 04:55:23 UTC (rev 144) +++ tdmdownloads/trunk/class/tdmdownloads_downloads.php 2012-01-10 21:18:22 UTC (rev 145) @@ -293,7 +293,7 @@ $options = array('N' =>_AM_TDMDOWNLOADS_FORMDATEUPDATE_NO . ' (' . formatTimestamp($v_date,'s') . ')', 'Y' => _AM_TDMDOWNLOADS_FORMDATEUPDATE_YES); $date->addOptionArray($options); $selection_date->addElement($date); - $selection_date->addElement(new XoopsFormTextDateSelect('', 'date', '', strtotime(formatTimestamp(time())))); + $selection_date->addElement(new XoopsFormTextDateSelect('', 'date', '', time())); $form->addElement($selection_date); } $status = new XoopsFormCheckBox(_AM_TDMDOWNLOADS_FORMSTATUS, 'status', $v_status); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |