This commit is contained in:
Paula V. Quispe
2016-04-07 15:34:02 -04:00
parent ef47f12129
commit a99b1b5bbe
3 changed files with 4 additions and 4 deletions

View File

@@ -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'];

View File

@@ -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') {

View File

@@ -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 '\'';
} }