HOR-708
This commit is contained in:
@@ -2880,7 +2880,7 @@ class Bootstrap
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getPasswordHashConfig()
|
public static function getPasswordHashConfig()
|
||||||
{
|
{
|
||||||
G::LoadClass('configuration');
|
G::LoadClass('configuration');
|
||||||
$config= new Configurations();
|
$config= new Configurations();
|
||||||
@@ -2901,7 +2901,7 @@ class Bootstrap
|
|||||||
return $passwordHashConfig;
|
return $passwordHashConfig;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getPasswordHashType()
|
public static function getPasswordHashType()
|
||||||
{
|
{
|
||||||
$passwordHashConfig = Bootstrap::getPasswordHashConfig();
|
$passwordHashConfig = Bootstrap::getPasswordHashConfig();
|
||||||
return $passwordHashConfig['current'];
|
return $passwordHashConfig['current'];
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ class G
|
|||||||
* is_https
|
* is_https
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function is_https()
|
public static function is_https()
|
||||||
{
|
{
|
||||||
if (isset($_SERVER['HTTPS'])) {
|
if (isset($_SERVER['HTTPS'])) {
|
||||||
if ($_SERVER['HTTPS']=='on') {
|
if ($_SERVER['HTTPS']=='on') {
|
||||||
|
|||||||
@@ -97,7 +97,7 @@ abstract class DBAdapter {
|
|||||||
*
|
*
|
||||||
* @return string The text delimeter.
|
* @return string The text delimeter.
|
||||||
*/
|
*/
|
||||||
public function getStringDelimiter()
|
public static function getStringDelimiter()
|
||||||
{
|
{
|
||||||
return '\'';
|
return '\'';
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user