From 875668761d06daa60c3e41229b64d5ff68003d78 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Mon, 17 Sep 2001 21:00:06 +0000 Subject: [PATCH] This time without the echo checks ... git-svn-id: file:///svn/phpbb/trunk@1059 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/profile.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/phpBB/profile.php b/phpBB/profile.php index 38d8c5f57f..0ca4d15e2c 100644 --- a/phpBB/profile.php +++ b/phpBB/profile.php @@ -380,9 +380,7 @@ if(isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode'])) $password = (!empty($HTTP_POST_VARS['password'])) ? trim(strip_tags(htmlspecialchars($HTTP_POST_VARS['password']))) : ""; $password_confirm = (!empty($HTTP_POST_VARS['password_confirm'])) ? trim(strip_tags(htmlspecialchars($HTTP_POST_VARS['password_confirm']))) : ""; - echo "|"; - echo $icq = (!empty($HTTP_POST_VARS['icq'])) ? trim(strip_tags($HTTP_POST_VARS['icq'])) : ""; - echo "|"; + $icq = (!empty($HTTP_POST_VARS['icq'])) ? trim(strip_tags($HTTP_POST_VARS['icq'])) : ""; $aim = (!empty($HTTP_POST_VARS['aim'])) ? trim(strip_tags($HTTP_POST_VARS['aim'])) : ""; $msn = (!empty($HTTP_POST_VARS['msn'])) ? trim(strip_tags($HTTP_POST_VARS['msn'])) : ""; $yim = (!empty($HTTP_POST_VARS['yim'])) ? trim(strip_tags($HTTP_POST_VARS['yim'])) : "";