When using biblatex together with myheadings, biblatex adds a header REFERENCES on the pages where the bibliography is. How do I prevent that?

\documentclass{article}
\pagestyle{myheadings} % page numbers in top right corner
\usepackage{fontspec,xunicode,xltxtra} % XeLaTeX
\defaultfontfeatures{Mapping=tex-text} % support TeX conventions like ``--''
\setmainfont{Linux Libertine O}
\usepackage{csquotes}
\usepackage[style = authoryear, backend = biber]{biblatex}
\addbibresource[location = local]{test.bib}
\begin{document}
I want to cite \cite{brunner1965}
\printbibliography
\end{document}
My .bib file:
@PREAMBLE{
"\newcommand{\aumlaut}{\char"00E4}" #
"\newcommand{\uumlaut}{\char"00FC}"
}
@BOOK{brunner1965,
AUTHOR = "Karl Brunner",
TITLE = "Altenglische {G}rammatik",
YEAR = "1965",
ADDENDUM = "{N}ach der angels{\aumlaut}chsischen {G}rammatik von {E}duard {S}ievers",
EDITION = "Dritte, neubearbeitete {A}uflage",
LANGUAGE = "German",
LOCATION = "T{\uumlaut}bingen",
NUMBER = "3",
PAGETOTAL = "x + 436",
PUBLISHER = "Max Niemeyer",
SERIES = "{S}ammlung kurzer {G}rammatiken germanischer {D}ialekte. {A}. {H}auptreihe"}
articledocument class,biblatexwill not, by default, typeset headers. – Mico Jul 31 '12 at 14:20articleclass:\documentclass[a4paper, 12pt, onecolumn, oneside, notitlepage]{article}– Sverre Jul 31 '12 at 15:42section*. The link is only an inspiration to find the correct section inside the documentation. – Marco Daniel Jul 31 '12 at 15:45section*to preventbiblatexfrom adding the header? I have found the relevant sections in the documentation, but I don't understand what I need to do. – Sverre Jul 31 '12 at 15:54\defbibheading{bibliography}[\refname]{\section*{#1}}– Marco Daniel Jul 31 '12 at 15:59biblatexwon't typeset headers by default. – Thorsten Jul 31 '12 at 15:59biblatexuses\markboth– Marco Daniel Jul 31 '12 at 16:00myheadingsandbiblatexinteract. I've made a minimally working example which illustrates the problem. – Sverre Jul 31 '12 at 16:23