Fix bug #3065284: AjaxVote problem with Webkit browsers

Conflicts:

	doc/ChangeLog
This commit is contained in:
Christian Weiske 2011-02-16 08:50:30 +01:00
parent e4d2d0ba2f
commit b2687abf91
2 changed files with 5 additions and 1 deletions

View File

@ -9,6 +9,7 @@ ChangeLog for SemantiScuttle
- Fix bug #3111254: Search in my_watchlist results in error - Fix bug #3111254: Search in my_watchlist results in error
- Fix bug #3073215: Updating bookmark time does not work - Fix bug #3073215: Updating bookmark time does not work
- Make Unittests run with phpunit 3.5.x - Make Unittests run with phpunit 3.5.x
- Fix bug #3065284: AjaxVote problem with Webkit browsers
0.97.1 - 2010-09-30 0.97.1 - 2010-09-30

View File

@ -155,7 +155,10 @@ function processVotingResult() {
var bmnode = document.getElementById('bmv-'+bookmark); var bmnode = document.getElementById('bmv-'+bookmark);
bmnode.parentNode.replaceChild( bmnode.parentNode.replaceChild(
response.getElementsByTagName('html')[0].firstChild, xmlhttp.responseXML.importNode(
response.getElementsByTagName('html')[0].firstChild,
true
),
bmnode bmnode
); );
} }