Actions
Feature proposal #4240
closedImplement support for strtotime now usage
Description
When using strtotime in conditionals it'd be good to be able to supply a date for now so a date could be added to or subtracted from. Example as follows
strtotime( +1 DAY, [cb_date] )
Normal strtotime should occur first though so you can do the following if needed.
strtotime( +1 DAY, strtotime( [cb_date] ) )
Updated by krileon almost 11 years ago
- Status changed from Assigned to Resolved
- % Done changed from 0 to 100
You can now use either/or usage as follows.
strtotime( VALUE, VALUE )
strtotime( VALUE )
Formation functions also are no longer case sensitive so you can use STRTOTIME if you want.
Actions