I am getting crazy with the minitoc package!!

The sub-indexes at the beginning of each chapter of my document are shifted : index of Chapter 2 at the beginning of Chapter 1 and so on....
I googled this problem and read the minitoc documentation but I could not find a solution. If anybody could help, it would be great !
Here is my template!
Note that that I do not want the abstract to appear in the general index, so there's a \chapter*{Abstract}
Code: Select all
\documentclass[a4paper,12pt,openright]{book}
% Config
\input{config}
\author{John Doe}
% Index making possible
\makeindex
\begin{document}
\frontmatter
\include{my_front_page}
\newpage
\newpage
% Fancy headers
\pagestyle{fancy}
\fancyhead{}
\fancyhead[LE]{\leftmark}
\fancyhead[RO]{\rightmark}
\cfoot{\thepage}
\renewcommand{\headrulewidth}{0.4pt}
\headheight 14pt
%========================================================
%Toc and minitoc
%========================================================
\doparttoc % minitoc stuff
\dominitoc
\adjustmtc
% Abstract
\chapter*{Abstract}
\phantomsection
\begingroup
%\hypersetup{linkcolor=red}
\tableofcontents
\listoffigures
\listoftables
\endgroup
\mainmatter
\include{intro}
\include{my_chap_2}
\newpage
\include{my_chap_3}
\newpage
\include{my_chap_4}
\newpage
\include{conclusion}
\newpage
\backmatter
\end{document}
Thanks a lot!