I am using biblatex-chicago to manage my bibliography but whenever I try to set a bibliography entry with the urldate field, it prints the word 'accessed' twice.
I have created a minimal example to demonstrate the problem. My source document looks like this:
\documentclass[a4paper]{article}
\usepackage[authordate,backend=biber]{biblatex-chicago}
\usepackage[australian]{babel}
\usepackage[babel]{csquotes}
\addbibresource{temp.bib}
\begin{document}
\cite{key}
\vfill\printbibliography
\end{document}
And temp.bib looks like this:
@online{ key,
author = "Surname, Forename M.",
title = "Title of an article",
year = "2012",
url = "http://www.test.com/",
urldate = "2012-04-18",
}
When I compile this, I end up with a reference list that looks like this:
Surname, Forename M. 2012. Title of an article. http://www.test.com/
(accessed [accessed 18 Apr. 2012]).
Can anyone see what is going on? Am I doing something wrong?

biblatex-chicagopackage? – Mico Apr 18 '12 at 4:04Package: biblatex-chicago 2011/08/31 v 1.6 biblatex styleif that helps. – ilium Apr 18 '12 at 5:57url+dateprints the text twice.\printtext[urldate]{\printurldate}}should be either only\printurldateor\printext[urldate]{\printfield{urlyear}...}. Notify the author. – Ulrike Fischer Apr 18 '12 at 7:24