aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2010-04-29 11:03:22 -0400
committerNils Adermann <naderman@naderman.de>2010-07-06 13:35:44 +0200
commit22232213f9a2354f8a38c3ca35faa46fc7085ec0 (patch)
treed329fb06f460e8bcffb6b3bb7e36f298f7f4a708 /phpBB/includes/functions_user.php
parentdea1d660fb63b07451f1a43310de359251462644 (diff)
downloadforums-22232213f9a2354f8a38c3ca35faa46fc7085ec0.tar
forums-22232213f9a2354f8a38c3ca35faa46fc7085ec0.tar.gz
forums-22232213f9a2354f8a38c3ca35faa46fc7085ec0.tar.bz2
forums-22232213f9a2354f8a38c3ca35faa46fc7085ec0.tar.xz
forums-22232213f9a2354f8a38c3ca35faa46fc7085ec0.zip
[ticket/6855] Changed 'seperator' to 'separator'. [Igor Wiedler]
PHPBB3-6855
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index 271542efdd..e622630b67 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -1755,15 +1755,15 @@ function validate_jabber($jid)
return false;
}
- $seperator_pos = strpos($jid, '@');
+ $separator_pos = strpos($jid, '@');
- if ($seperator_pos === false)
+ if ($separator_pos === false)
{
return 'WRONG_DATA';
}
- $username = substr($jid, 0, $seperator_pos);
- $realm = substr($jid, $seperator_pos + 1);
+ $username = substr($jid, 0, $separator_pos);
+ $realm = substr($jid, $separator_pos + 1);
if (strlen($username) == 0 || strlen($realm) < 3)
{