I have some trouble with the bibliography alignment. It's similar to References to align with the rest of the text, but that solution doesn't work for me.
Here is MWE:
\documentclass{article}
\let\oldthebibliography=\thebibliography
\let\endoldthebibliography=\endthebibliography
\renewenvironment{thebibliography}[1]{%
\begin{oldthebibliography}{#1}%
\setlength{\parskip}{0ex}%
\setlength{\itemsep}{0ex}%
\setlength{\itemindent}{3ex}
\setlength{\leftmargin}{0pt}%
}%
{
\end{oldthebibliography}%
}
\begin{document}
Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text.
\begin{thebibliography}{0}
\bibitem{1} Baider A. Noncompact Riemannian manifolds with discrete spectra //
J.Diff.Geom. -- 1979 -- V. 14 -- p. 41--57.
\bibitem{2} Berger M., Gauduchon P., Mazet E. Le spectre d'une
vari\'et\'e Rieman\-nienne -- Berlin-New York: Springer-Verlag, 1971. -- 251p.
-- (Lecture Notes in Math.; V.~194)
\end{thebibliography}
\end{document}
So I need the reference labels to be aligned with the parindent, and the rest part of the each bibliography entry should have general text width. I thought it's enough to set \leftmargin=0pt, but it didn't work. I have the following result:

And what is actually more weird - it seems any value of \leftmargin doesn't have any effect to the bibliography display. The solution from the link above works fine if we don't have biblabel, but it's not my case.
Could you help me to move lines with the red marks to the green one?

