1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 18:54:08 +02:00

Various updates ...

git-svn-id: file:///svn/phpbb/trunk@2831 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2002-08-06 23:58:27 +00:00
parent 6e6c85b9b7
commit d299df3b25
2 changed files with 67 additions and 67 deletions

View File

@@ -146,7 +146,7 @@ if ( isset($HTTP_POST_VARS['bansubmit']) )
$ip_2_counter = 256;
$ip_2_fragment = 256;
$banlist[] = "'$ip_1_counter.'";
$banlist[] = "'$ip_1_counter.*'";
}
while ( $ip_2_counter <= $ip_2_end )
@@ -159,7 +159,7 @@ if ( isset($HTTP_POST_VARS['bansubmit']) )
$ip_3_counter = 256;
$ip_3_fragment = 256;
$banlist[] = "'$ip_1_counter.$ip_2_counter.'";
$banlist[] = "'$ip_1_counter.$ip_2_counter.*'";
}
while ( $ip_3_counter <= $ip_3_end )
@@ -172,7 +172,7 @@ if ( isset($HTTP_POST_VARS['bansubmit']) )
$ip_4_counter = 256;
$ip_4_fragment = 256;
$banlist[] = "'$ip_1_counter.$ip_2_counter.$ip_3_counter.'";
$banlist[] = "'$ip_1_counter.$ip_2_counter.$ip_3_counter.*'";
}
while ( $ip_4_counter <= $ip_4_end )
@@ -199,9 +199,9 @@ if ( isset($HTTP_POST_VARS['bansubmit']) )
}
}
}
else if ( preg_match('/^([0-9]{1,3})\.([0-9\*]{1,3})\.([0-9\*]{1,3})\.([0-9\*]{1,3})$/', trim($ban_list[$i])) )
else if ( preg_match('/^([0-9]{1,3})\.([0-9\*]{1,3})\.([0-9\*]{1,3})\.([0-9\*]{1,3})$/', trim($ban_list[$i])) || preg_match('/^[a-f0-9:]+\*?$/i', trim($ban_list[$i])) )
{
$banlist[] = '\'' . str_replace('*', '', trim($ban_list[$i])) . '\'';
$banlist[] = '\'' . trim($ban_list[$i]) . '\'';
}
}
break;