aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/profile.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-09-17 21:00:06 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-09-17 21:00:06 +0000
commit875668761d06daa60c3e41229b64d5ff68003d78 (patch)
treefe5b384e4eb6a41ac5f3014ee8c360e9785aa5af /phpBB/profile.php
parent1e9d5266863161294cf80189ee8ecaa2a62e4db9 (diff)
downloadforums-875668761d06daa60c3e41229b64d5ff68003d78.tar
forums-875668761d06daa60c3e41229b64d5ff68003d78.tar.gz
forums-875668761d06daa60c3e41229b64d5ff68003d78.tar.bz2
forums-875668761d06daa60c3e41229b64d5ff68003d78.tar.xz
forums-875668761d06daa60c3e41229b64d5ff68003d78.zip
This time without the echo checks ...
git-svn-id: file:///svn/phpbb/trunk@1059 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/profile.php')
-rw-r--r--phpBB/profile.php4
1 files changed, 1 insertions, 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'])) : "";