Make feedtest module for logged users only

This commit is contained in:
Hypolite Petovan 2018-03-10 18:53:20 -05:00
parent 17e0d6b6c1
commit fa620022d5
1 changed files with 5 additions and 1 deletions

View File

@ -16,7 +16,11 @@ require_once 'include/text.php';
function feedtest_content(App $a)
{
//$a->page['template'] = "wide-2-columns";
if (!local_user()) {
info(L10n::t('You must be logged in to use this module'));
return;
};
$result = [];
if (!empty($_REQUEST['url'])) {
$url = $_REQUEST['url'];