mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-02 22:41:56 +03:00
Fix ipb.php! (fixed locale).
This commit is contained in:
parent
f79799bee1
commit
6a9ce59a94
1 changed files with 5 additions and 5 deletions
|
@ -5,13 +5,13 @@ header("Content-Type: text/plain; charset=UTF-8");
|
||||||
$login = $_GET['login'];
|
$login = $_GET['login'];
|
||||||
$password = $_GET['password'];
|
$password = $_GET['password'];
|
||||||
if(empty($login) || empty($password)) {
|
if(empty($login) || empty($password)) {
|
||||||
exit('Empty login or password');
|
exit('Введены неверные данные');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load IPB core
|
// Load IPB core
|
||||||
define('IPB_THIS_SCRIPT', 'public');
|
define('IPB_THIS_SCRIPT', 'public');
|
||||||
require_once('initdata.php');
|
require('initdata.php'); // not once!!!
|
||||||
require_once(IPS_ROOT_PATH . 'sources/base/ipsRegistry.php');
|
require(IPS_ROOT_PATH . 'sources/base/ipsRegistry.php');
|
||||||
$reg = ipsRegistry::instance();
|
$reg = ipsRegistry::instance();
|
||||||
$reg->init();
|
$reg->init();
|
||||||
|
|
||||||
|
@ -19,10 +19,10 @@ $reg->init();
|
||||||
$member = IPSMember::load(IPSText::parseCleanValue($login), 'all', 'username');
|
$member = IPSMember::load(IPSText::parseCleanValue($login), 'all', 'username');
|
||||||
$member_id = $member['member_id'];
|
$member_id = $member['member_id'];
|
||||||
if (!$member_id) {
|
if (!$member_id) {
|
||||||
exit('Incorrect login');
|
exit('Введены неверные данные');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try authenticate
|
// Try authenticate
|
||||||
$success = IPSMember::authenticateMember($member_id, md5(IPSText::parseCleanValue($password)));
|
$success = IPSMember::authenticateMember($member_id, md5(IPSText::parseCleanValue($password)));
|
||||||
echo($success ? 'OK:' . $member['name'] : 'Incorrect login or password');
|
echo($success ? 'OK:' . $member['name'] : 'Ошибка при авторизации');
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in a new issue