I'm writing a thesis document. After the Appendix section I have the Reference section.
My problem is that my References have three pages total, in the first page appears the bibliography title correctly, as the next picture shows:

But in the next two pages the header appears as if it were part of the appendix, like this:

NOTE: This has the same result if I place the bibliography before the appendix, except that in this case the header changes to the one of the last chapter.
EDIT: This is the code where I call the chapters, appendix and bibliography. Hope it helps to find a solution:
\documentclass[oneside,numbers,a4paper,spanish]{ezthesis}
\usepackage[Bjornstrup]{fncychap}
\usepackage{amsmath}
\usepackage{float}
\author{**}
\title{**}
\degree{**}
\supervisor{**}
\institution{**}
\faculty{**}
\department{**}
\makeatletter
\newenvironment{chapquote}[2][2em]
{\setlength{\@tempdima}{#1}%
\def\chapquote@author{#2}%
\parshape 1 \@tempdima \dimexpr\textwidth-2\@tempdima\relax%
\itshape}
{\par\normalfont\hfill--\ \chapquote@author\hspace*{\@tempdima}\par\bigskip}
\makeatother
\hyperlinking
\begin{document}
\renewcommand{\tablename}{Tabla}
\include{Chapters/titlepage}
\include{Chapters/gracias}
\tableofcontents
%% # Chapters#
\include{Chapters/1}
\include{Chapters/2}
\include{Chapters/3}
\include{Chapters/4}
\include{Chapters/5}
\include{Chapters/6}
\appendix
\include{appendix/apendiceA}
\include{appendix/apendiceB}
\include{appendix/apendiceC}
\include{appendix/apendiceD}
\bibliography{biblio}
\end{document}
EDIT 2: This link have the ezthesis: EZTHESIS
How could I fix this?

texcode you use to build the appendix and to call your bibliopraphy? A complete MWE would be the best, include one or two of your bibentrys with packagefilecontents(texdoc filecontents). That would show us which document class you use etc. – Kurt Nov 26 '12 at 23:37ezthesis)? – Gonzalo Medina Nov 27 '12 at 3:44\clearpageand\markboth{Bibliografia}{Bibliografia}before\bibliography{biblio}to reset the running heads. – barbara beeton Nov 27 '12 at 15:07\includebecause we have not your included files. Show us how you call your first chapter (copy relevant lines fromchapter1.texinto your MWE. Same with the first chapter of appendix ... – Kurt Nov 28 '12 at 16:46