XMPP: Don't show the addon on the federation page.

pull/337/head
Michael Vogel 2016-01-17 14:54:31 +01:00
parent 4676ff5554
commit 6d3c0f1305
1 changed files with 3 additions and 0 deletions

View File

@ -125,6 +125,9 @@ function xmpp_converse(&$a,&$s) {
if (!get_pconfig(local_user(),"xmpp","enabled"))
return;
if (in_array($a->query_string, array("admin/federation/")))
return;
$a->page['htmlhead'] .= '<link type="text/css" rel="stylesheet" media="screen" href="addon/xmpp/converse/css/converse.css" />'."\n";
$a->page['htmlhead'] .= '<script src="addon/xmpp/converse/builds/converse.min.js"></script>'."\n";