Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct undefined const DEFAULT_NO_PASSWORD_SAVE in docker #1244

Merged
merged 1 commit into from
Sep 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions scripts/create_account.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@

/* get config object */
$config = new Hm_Site_Config_File();
/* set the default since and per_source values */
$environment->define_default_constants($config);

/* check config for db auth */
if ($config->get('auth_type') != 'DB') {
Expand Down
2 changes: 2 additions & 0 deletions scripts/delete_account.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
$environment->load();
/* get config object */
$config = new Hm_Site_Config_File();
/* set the default since and per_source values */
$environment->define_default_constants($config);

/* check config for db auth */
if ($config->get('auth_type') != 'DB') {
Expand Down
2 changes: 2 additions & 0 deletions scripts/setup_database.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

/* get config object */
$config = new Hm_Site_Config_File();
/* set the default since and per_source values */
$environment->define_default_constants($config);

$session_type = $config->get('session_type');
$auth_type = $config->get('auth_type');
Expand Down
2 changes: 2 additions & 0 deletions scripts/update_password.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
$environment->load();
/* get config object */
$config = new Hm_Site_Config_File(merge_config_files(APP_PATH.'config'));
/* set the default since and per_source values */
$environment->define_default_constants($config);

/* check config for db auth */
if ($config->get('auth_type') != 'DB') {
Expand Down