From b4bd518e4032661cdfba4e17acdb94e19b23fdd2 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 28 Aug 2013 21:56:01 -0700 Subject: silence some warnings at php E_ALL levels --- mod/update_network.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mod/update_network.php') diff --git a/mod/update_network.php b/mod/update_network.php index bb6245f65..0021af876 100644 --- a/mod/update_network.php +++ b/mod/update_network.php @@ -11,7 +11,7 @@ function update_network_content(&$a) { $load = (((argc() > 1) && (argv(1) == 'load')) ? 1 : 0); header("Content-type: text/html"); echo "\r\n"; - echo (($_GET['msie'] == 1) ? '
' : '
'); + echo ((array_key_exists('msie',$_GET) && $_GET['msie'] == 1) ? '
' : '
'); $text = network_content($a,$profile_uid, $load); @@ -32,7 +32,7 @@ function update_network_content(&$a) { } echo str_replace("\t",' ',$text); - echo (($_GET['msie'] == 1) ? '
' : '
'); + echo ((array_key_exists('msie',$_GET) && $_GET['msie'] == 1) ? '
' : ''); echo "\r\n"; // logger('update_network: ' . $text); killme(); -- cgit v1.2.3