From 5189e95831b24f277b2fd91ae2e1a5ef337afbcc Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Sat, 16 May 2015 12:56:18 +0300 Subject: [PATCH] Fix one more notice --- shared.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared.php b/shared.php index 022fe22..e8c61a7 100644 --- a/shared.php +++ b/shared.php @@ -65,7 +65,7 @@ function lnk($what = NULL, $atom = false, $offset = NULL) $what = $_GET['what']; if ($what !== NULL) $link .= '&what='.urlencode($what); - if ($_GET['feed']) + if (!empty($_GET['feed'])) $link .= '&feed='.intval($_GET['feed']); if ($offset > 0) $link .= '&offset='.intval($offset);