mirror of
https://github.com/araxiaonline/WoWSimpleRegistration.git
synced 2026-06-13 11:22:35 -04:00
14 lines
379 B
PHP
14 lines
379 B
PHP
<?php
|
|
/**
|
|
* @author Amin Mahmoudi (MasterkinG)
|
|
* @copyright Copyright (c) 2019 - 2024, MasterkinG32. (https://masterking32.com)
|
|
* @link https://masterking32.com
|
|
**/
|
|
|
|
$core_config['salt_field'] = 'salt';
|
|
$core_config['verifier_field'] = 'verifier';
|
|
|
|
if($config['server_core'] == 5) { // CMangos
|
|
$core_config['salt_field'] = 's';
|
|
$core_config['verifier_field'] = 'v';
|
|
} |