PubSubHub: remove dead code

This commit is contained in:
ArthurHoaro 2017-05-09 18:26:34 +02:00
parent bf67ac345f
commit 033cf2a1e5
1 changed files with 0 additions and 21 deletions

View File

@ -225,27 +225,6 @@ function setup_login_state($conf)
}
$userIsLoggedIn = setup_login_state($conf);
/**
* PubSubHubbub protocol support (if enabled) [UNTESTED]
* (Source: http://aldarone.fr/les-flux-rss-shaarli-et-pubsubhubbub/ )
*
* @param ConfigManager $conf Configuration Manager instance.
*/
function pubsubhub($conf)
{
$pshUrl = $conf->get('config.PUBSUBHUB_URL');
if (!empty($pshUrl))
{
include_once './publisher.php';
$p = new Publisher($pshUrl);
$topic_url = array (
index_url($_SERVER).'?do=atom',
index_url($_SERVER).'?do=rss'
);
$p->publish_update($topic_url);
}
}
// ------------------------------------------------------------------------------------------
// Session management