Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.com * License: http://www.mybboard.com/eula.html *
|
* Website: http://www.mybboard.com * License: http://www.mybboard.com/eula.html *
|
* $Id: global.php 2180 2006-09-02 07:36:22Z chris $
| * $Id: global.php 2517 2006-12-13 04:46:38Z chris $
|
*/
// If archive mode deos not work, uncomment the line below and try again
| */
// If archive mode deos not work, uncomment the line below and try again
|
Zeile 160 | Zeile 160 |
---|
$navbits[0]['url'] = $mybb->settings['bburl']."/archive/index.php";
// Check banned ip addresses
|
$navbits[0]['url'] = $mybb->settings['bburl']."/archive/index.php";
// Check banned ip addresses
|
$bannedips = explode(" ", $mybb->settings['bannedips']); if(is_array($bannedips))
| if(is_banned_ip($session->ipaddress))
|
{
|
{
|
foreach($bannedips as $key => $bannedip) { $bannedip = trim($bannedip); if($bannedip != "") { if(strstr($session->ipaddress, $bannedip)) { archive_error($lang->error_banned); } } }
| archive_error($lang->error_banned);
|
}
// If our board is closed..
| }
// If our board is closed..
|