From 6a9ce59a9400009b351df42f1fff2adcdaf818ad Mon Sep 17 00:00:00 2001 From: Zaxar163 <35835496+Zaxar163@users.noreply.github.com> Date: Mon, 5 Nov 2018 12:33:20 +0300 Subject: [PATCH] Fix ipb.php! (fixed locale). --- compat/auth/ipb.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/compat/auth/ipb.php b/compat/auth/ipb.php index cf9ace78..ad2d25d9 100644 --- a/compat/auth/ipb.php +++ b/compat/auth/ipb.php @@ -5,13 +5,13 @@ header("Content-Type: text/plain; charset=UTF-8"); $login = $_GET['login']; $password = $_GET['password']; if(empty($login) || empty($password)) { - exit('Empty login or password'); + exit('Введены неверные данные'); } // Load IPB core define('IPB_THIS_SCRIPT', 'public'); -require_once('initdata.php'); -require_once(IPS_ROOT_PATH . 'sources/base/ipsRegistry.php'); +require('initdata.php'); // not once!!! +require(IPS_ROOT_PATH . 'sources/base/ipsRegistry.php'); $reg = ipsRegistry::instance(); $reg->init(); @@ -19,10 +19,10 @@ $reg->init(); $member = IPSMember::load(IPSText::parseCleanValue($login), 'all', 'username'); $member_id = $member['member_id']; if (!$member_id) { - exit('Incorrect login'); + exit('Введены неверные данные'); } // Try authenticate $success = IPSMember::authenticateMember($member_id, md5(IPSText::parseCleanValue($password))); -echo($success ? 'OK:' . $member['name'] : 'Incorrect login or password'); +echo($success ? 'OK:' . $member['name'] : 'Ошибка при авторизации'); ?>