fix 2 more notices

master
Vitaliy Filippov 2014-12-10 01:34:17 +03:00
parent 7f47b58150
commit ba549ca6ef
1 changed files with 2 additions and 2 deletions

View File

@ -22,11 +22,11 @@ while (list ($key, $val) = each ($_POST))
}
}
if ($_REQUEST['deltag'])
if (!empty($_REQUEST['deltag']))
{
fof_untag(fof_current_user(), $_REQUEST['deltag']);
}
elseif ($_POST['feed'])
elseif (!empty($_POST['feed']))
{
fof_db_mark_feed_read(fof_current_user(), $_POST['feed']);
}