Есть подвижки?
Новое сообщение автору отослал, он своё слово пока не сдержал - обновления не было.

Зато появилось поправка к коду от одного из клиентов
Good, but too bad development has stopped.byparvus on January 6, 2009
This plugin only changes the display of the date, and I like the end result a lot. When I disable the plugin, my site looks plain and a lot less easy to read.
I can only hope someone will pick up this project and fix the xhtml compliance issues.
Besides that, there is a small error in the code, which will only occur when "date of last update" is used for the option "What to show". Since the Modified date is by default set to "0000-00-00 00:00:00", you need to pick up the creation date in case an article was never modified.
For this, change the lines on 215 through 219 in calendar_icon.php to:
/* var that gets calendar code and establish its position */ $data_artykulu = $row->created; if ( ( $this->_params->get('showing', '0') == '1' ) and ( $row->modified > $row->created ) ) { $data_artykulu = $row->modified; }