From a99b1b5bbea4317ac8c2720b68a8b51b3b1bf7b0 Mon Sep 17 00:00:00 2001 From: "Paula V. Quispe" Date: Thu, 7 Apr 2016 15:34:02 -0400 Subject: [PATCH] HOR-708 --- gulliver/system/class.bootstrap.php | 4 ++-- gulliver/system/class.g.php | 2 +- gulliver/thirdparty/propel/adapter/DBAdapter.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gulliver/system/class.bootstrap.php b/gulliver/system/class.bootstrap.php index c7ebf4897..cd3f7f24a 100644 --- a/gulliver/system/class.bootstrap.php +++ b/gulliver/system/class.bootstrap.php @@ -2880,7 +2880,7 @@ class Bootstrap } } - public function getPasswordHashConfig() + public static function getPasswordHashConfig() { G::LoadClass('configuration'); $config= new Configurations(); @@ -2901,7 +2901,7 @@ class Bootstrap return $passwordHashConfig; } - public function getPasswordHashType() + public static function getPasswordHashType() { $passwordHashConfig = Bootstrap::getPasswordHashConfig(); return $passwordHashConfig['current']; diff --git a/gulliver/system/class.g.php b/gulliver/system/class.g.php index 23269b8a4..cd4912c53 100644 --- a/gulliver/system/class.g.php +++ b/gulliver/system/class.g.php @@ -36,7 +36,7 @@ class G * is_https * @return void */ - public function is_https() + public static function is_https() { if (isset($_SERVER['HTTPS'])) { if ($_SERVER['HTTPS']=='on') { diff --git a/gulliver/thirdparty/propel/adapter/DBAdapter.php b/gulliver/thirdparty/propel/adapter/DBAdapter.php index 4f42a4486..5b07394ec 100755 --- a/gulliver/thirdparty/propel/adapter/DBAdapter.php +++ b/gulliver/thirdparty/propel/adapter/DBAdapter.php @@ -97,7 +97,7 @@ abstract class DBAdapter { * * @return string The text delimeter. */ - public function getStringDelimiter() + public static function getStringDelimiter() { return '\''; }