[Tex/LaTex] Remove citation from List of Figures

captionstable of contents

I have list of figures page.
Some of these figures' captions have citation.
How can I remove the citation from the list of figures page and keep the citation on the normal pages ?
Regards

:::::::::::::::::::::::::
Addendum
I am using the following command :

\newcommand{\munepsfig}[3][scale=1.0]{%
    \begin{figure}[!htbp]
        \centering
        \vspace{2mm}
        \includegraphics[#1]{figures/#2.eps}
        \caption{#3}
        \label{fig:#2}
    \end{figure}
}

Sample Usage:

\munepsfig[scale=0.5,angle=90]{barchart}{Population over time}

Best Answer

Use the optional argument for \caption:

\caption[Text to the LoF]{Text for the document \cite{xx}}

With the edit to the original question, I would suggest this definition of \munepsfig (using the xparse package):

\usepackage{xparse}

\NewDocumentCommand\munepsfig{O{scale=1.0}mom}
{% 
\begin{figure}[!htbp] 
  \centering 
  \vspace{2mm} 
  \includegraphics[#1]{figures/#2.eps}
  \IfNoValueTF {#3}
    {\caption{#4}}
    {\caption[#3]{#4}} 
  \label{fig:#2} 
\end{figure}%
}

And use it like this:

\munepsfig[scale=0.5,angle=90]{image}[Text for the LoF]{Text for the document}

if you want to have a different text in the LoF, or simply as

\munepsfig[scale=0.5,angle=90]{image}{Text for the document and the LoF}

to have the same text in both the document and the LoF.

Note that the new third argument is optional so you only have to use it if you want to use the optional argument of \caption.