I gave myself TRAC_ADMIN permissions, went to the "admin" tab and tried to add milestones. The error was that parse_date couldn't be found. Here's a one-liner patch.
$ svn diff Index: trac/ticket/admin.py =================================================================== --- trac/ticket/admin.py (revision 4155) +++ trac/ticket/admin.py (working copy) @@ -19,8 +19,8 @@ from trac.ticket import model from trac.util import datefmt from trac.web.chrome import add_link, add_script +from trac.util.datefmt import parse_date - class ComponentAdminPage(Component): implements(IAdminPanelProvider) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Development" group. To post to this group, send email to trac-dev@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-dev?hl=en -~----------~----~----~----~------~----~------~--~---