git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35389 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-09-15 13:51:06 +00:00
parent b5d2e9d285
commit fbc092639c

View File

@ -295,7 +295,7 @@ docstring InsetBibitem::xhtml(XHTMLStream & xs, OutputParams const &) const
// need to use "name" anyway, eventually, because some browsers do not // need to use "name" anyway, eventually, because some browsers do not
// handle jumping to ids. If we don't do that, though, we can just put the // handle jumping to ids. If we don't do that, though, we can just put the
// id into the span tag. // id into the span tag.
string const attrs = "id='" + to_utf8(getParam("key")) + "'"; string const attrs = "id='" + to_utf8(getParam("label")) + "'";
xs << html::CompTag("a", attrs); xs << html::CompTag("a", attrs);
xs << html::StartTag("span", "class='bibitemlabel'"); xs << html::StartTag("span", "class='bibitemlabel'");
xs << bibLabel(); xs << bibLabel();