<?php /** * We re-use vote.php but set the ajax flag */ $GLOBALS['ajaxRequest'] = true; require 'vote.php'; $bs = SemanticScuttle_Service_Factory::get('Bookmark'); $ts = SemanticScuttle_Service_Factory::get('Template'); $bmrow = $bs->getBookmark($bookmark); header('Content-Type: text/xml; charset=utf-8'); echo '<voteresult><bookmark>' . $bookmark . '</bookmark>' . '<html xmlns="http://www.w3.org/1999/xhtml">'; $ts->loadTemplate( 'bookmarks-vote.inc.tpl.php', array('row' => $bmrow) ); echo '</html></voteresult>'; ?>