Merge pull request #337 from annando/1601-xmpp-federation
XMPP: Don't show the addon on the federation page.
This commit is contained in:
commit
80ccdf0083
1 changed files with 3 additions and 0 deletions
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue