diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-04-06 19:13:19 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-04-06 19:13:19 +0200 |
commit | 7379805565815c576723b888a20af080248222da (patch) | |
tree | 498c98e8b6c43c2729349b7680c6a20efcfb98f3 /www/jsScuttle.php | |
parent | 1e3cd8bf6ee636a5af692b57906612d6109849cb (diff) | |
parent | 12c77161aca2c7d76fa5154fa1f4e214106d834b (diff) | |
download | SemanticScuttle-origin/quickform.zip SemanticScuttle-origin/quickform.tar.gz SemanticScuttle-origin/quickform.tar.bz2 |
Merge branch 'master' into quickformorigin/quickform
Conflicts:
data/templates/bookmarks.tpl.php
data/templates/sidebar.block.search.php
data/templates/top.inc.php
doc/developers/TODO
src/SemanticScuttle/header.php
Diffstat (limited to 'www/jsScuttle.php')
-rw-r--r-- | www/jsScuttle.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/www/jsScuttle.php b/www/jsScuttle.php index f37da78..c166755 100644 --- a/www/jsScuttle.php +++ b/www/jsScuttle.php @@ -155,7 +155,10 @@ function processVotingResult() { var bmnode = document.getElementById('bmv-'+bookmark); bmnode.parentNode.replaceChild( - response.getElementsByTagName('html')[0].firstChild, + xmlhttp.responseXML.importNode( + response.getElementsByTagName('html')[0].firstChild, + true + ), bmnode ); } |