Vergleich archive/global.php - 1.2.2 - 1.2.7

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 3Zeile 3
 * MyBB 1.2
* Copyright © 2006 MyBB Group, All Rights Reserved
*

 * MyBB 1.2
* Copyright © 2006 MyBB Group, All Rights Reserved
*

 * Website: http://www.mybboard.com
* License: http://www.mybboard.com/eula.html

 * Website: http://www.mybboard.net
* License: http://www.mybboard.net/eula.html

 *

 *

 * $Id: global.php 2180 2006-09-02 07:36:22Z chris $

 * $Id: global.php 2932 2007-03-10 05:48:55Z 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 160Zeile 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..