Index: openacs-4/packages/xowiki/www/prototypes/bib.page =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/www/prototypes/bib.page,v diff -u -r1.7 -r1.8 --- openacs-4/packages/xowiki/www/prototypes/bib.page 16 Jun 2015 20:33:08 -0000 1.7 +++ openacs-4/packages/xowiki/www/prototypes/bib.page 23 Jun 2015 08:04:10 -0000 1.8 @@ -26,9 +26,10 @@ append content "
  • [next]
  • \n" } EntryRenderer instproc by_date {} { - if {[my exists instance_attributes]} { - array set ia [my set instance_attributes] - return "$ia(year)-[format %2d $ia(month)]" + if {[my exists instance_attributes]} { + array set ia {year "" month ""} + array set ia [my set instance_attributes] + return "$ia(year)-[format %2d $ia(month)]" } }