According to the documentation it is possible to extend the sorting options of the news extension in TYPO3 using:
$GLOBALS['TYPO3_CONF_VARS']['EXT']['news']['orderByNews']
I did so in the ext_tables.php
file:
$GLOBALS['TYPO3_CONF_VARS']['EXT']['news']['orderByNews'] .= ',div_startdate';
Now I can see the new option in the selector, but the selection of it does nothing in the order of the displayed items.
What else should I do to get this sorting working?