diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-03-29 08:37:33 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-03-29 08:37:33 +0000 |
commit | dd1e25e830180c7453ea93f3764e5de8699cf98d (patch) | |
tree | 77291eede4144ba1790629cc5ee157300fd9d2dd /phpBB | |
parent | 112a0e876145d204cfbb0effe9400953bb0cc689 (diff) | |
download | forums-dd1e25e830180c7453ea93f3764e5de8699cf98d.tar forums-dd1e25e830180c7453ea93f3764e5de8699cf98d.tar.gz forums-dd1e25e830180c7453ea93f3764e5de8699cf98d.tar.bz2 forums-dd1e25e830180c7453ea93f3764e5de8699cf98d.tar.xz forums-dd1e25e830180c7453ea93f3764e5de8699cf98d.zip |
#1340
git-svn-id: file:///svn/phpbb/trunk@5753 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/acp/acp_users.php | 2 | ||||
-rw-r--r-- | phpBB/includes/ucp/ucp_profile.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_users.php b/phpBB/includes/acp/acp_users.php index edd6f294b4..a90832cd00 100644 --- a/phpBB/includes/acp/acp_users.php +++ b/phpBB/includes/acp/acp_users.php @@ -879,7 +879,7 @@ class acp_users 'icq' => array( array('string', true, 3, 15), array('match', true, '#^[0-9]+$#i')), - 'aim' => array('string', true, 5, 255), + 'aim' => array('string', true, 3, 17), 'msn' => array('string', true, 5, 255), 'jabber' => array( array('string', true, 5, 255), diff --git a/phpBB/includes/ucp/ucp_profile.php b/phpBB/includes/ucp/ucp_profile.php index 75ebe73040..cf5824200d 100644 --- a/phpBB/includes/ucp/ucp_profile.php +++ b/phpBB/includes/ucp/ucp_profile.php @@ -262,7 +262,7 @@ class ucp_profile 'icq' => array( array('string', true, 3, 15), array('match', true, '#^[0-9]+$#i')), - 'aim' => array('string', true, 5, 255), + 'aim' => array('string', true, 3, 17), 'msn' => array('string', true, 5, 255), 'jabber' => array( array('string', true, 5, 255), |