diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-05-26 21:51:03 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-05-26 21:51:03 +0000 |
| commit | 9df538795cc251c3dab093d07ab97d83574333f6 (patch) | |
| tree | f4ac17e29439246ce6bc7a856013e5882133b49d /phpBB/profile.php | |
| parent | 81c26eef7ed8e73bbf6ef179e37582d43120e6f8 (diff) | |
| download | forums-9df538795cc251c3dab093d07ab97d83574333f6.tar forums-9df538795cc251c3dab093d07ab97d83574333f6.tar.gz forums-9df538795cc251c3dab093d07ab97d83574333f6.tar.bz2 forums-9df538795cc251c3dab093d07ab97d83574333f6.tar.xz forums-9df538795cc251c3dab093d07ab97d83574333f6.zip | |
As I said in a post at phpBB.com today nothing has gone right first time
git-svn-id: file:///svn/phpbb/trunk@334 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/profile.php')
| -rw-r--r-- | phpBB/profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/profile.php b/phpBB/profile.php index 549fc841e9..60fa68c5be 100644 --- a/phpBB/profile.php +++ b/phpBB/profile.php @@ -378,7 +378,7 @@ if(isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode'])) $location = (!empty($HTTP_POST_VARS['location'])) ? trim(strip_tags(addslashes($HTTP_POST_VARS['location']))) : ""; $occupation = (!empty($HTTP_POST_VARS['occupation'])) ? trim(strip_tags(addslashes($HTTP_POST_VARS['occupation']))) : ""; $interests = (!empty($HTTP_POST_VARS['interests'])) ? trim(addslashes($HTTP_POST_VARS['interests'])) : ""; - echo $signature = (!empty($HTTP_POST_VARS['signature'])) ? trim(addslashes(str_replace("<br />", "\n", $HTTP_POST_VARS['signature']))) : ""; + $signature = (!empty($HTTP_POST_VARS['signature'])) ? trim(addslashes(str_replace("<br />", "\n", $HTTP_POST_VARS['signature']))) : ""; $viewemail = $HTTP_POST_VARS['viewemail']; $attachsig = $HTTP_POST_VARS['attachsig']; |
