token.module, line 446 reads:
$tokens[$token_prefix . 'small'] = t("!description date in 'small' format. <em>(06/07/2010 - 23:28)</em>", array('!description' => $description));
The given example date is bad as in an international context it is ambiguous.
Not clear wether it means DD/MM/YYYY (European style) or MM/DD/YYYY (US style).
Simply use a day digit higher than 12, i.e "15", then is is clear which digit is the day, and which one the month!
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | 975364-token-date-description-examples.patch | 3.29 KB | dave reid |
Comments
Comment #1
dave reidGood point. The D7 tokens use the current date as examples in that case, so that's what we should do here as well.
Comment #2
dave reidCommitted #1 to CVS!
http://drupal.org/cvs?commit=453488
Comment #3
porg commentedYou are welcome! Glad that I was of help.