Fixed  The "dayEnd" option has no effect when filtering a DATE_TIME parameter

Shadab

Well-known member
Setting the dayEnd option (to true or false) when filtering a date/time object has no effect.

In XenForo_Input::_doClean() method, line ~270
the $options variable doesn't exist.
PHP:
							if (!empty($options['dayEnd']))
							{
								$date->setTime(23, 59, 59);
							}
 
Top Bottom