Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
User expired
tcexam_uibk
Commits
3765f564
Commit
3765f564
authored
Jul 05, 2016
by
Ewald
Browse files
moved constant for lowercase from admin to shared configuration
parent
87b08bf7
Changes
2
Hide whitespace changes
Inline
Side-by-side
admin/config.default/tce_auth.php
View file @
3765f564
...
...
@@ -40,6 +40,10 @@
* Administrator level.
*/
define
(
'K_AUTH_ADMINISTRATOR'
,
10
);
/**
* backoffice level.
*/
define
(
'K_AUTH_BACKOFFICE'
,
8
);
/**
* Operator level.
...
...
@@ -201,13 +205,6 @@ define ('K_AUTH_SSL_LEVEL', false);
define
(
'K_AUTH_SSLIDS'
,
''
);
/**
* Lowercase user names for login screen
* if true, all characters in user names will be converted to lowercase
*/
define
(
'K_AUTH_LOWERCASE_USERNAMES'
,
true
);
//============================================================+
// END OF FILE
//============================================================+
shared/config.default/tce_config.php
View file @
3765f564
...
...
@@ -257,10 +257,19 @@ define('K_EXTEND_TIME_MINUTES', 5);
/**
* Default IP range, e.g. if dedicated exam room is used
*/
define
(
'K_DEFAULT_IP_RANGE'
,
'*.*.*.*'
);
*/
define
(
'K_DEFAULT_IP_RANGE'
,
'*.*.*.*'
);
/**
* Lowercase user names for login screen
* if true, all characters in user names will be converted to lowercase
*/
define
(
'K_AUTH_LOWERCASE_USERNAMES'
,
true
);
// ---------- * ---------- * ---------- * ---------- * ----------
/**
* Error handlers.
*/
...
...
@@ -351,4 +360,4 @@ function addSlashesArray($data) {
}
//============================================================+
// END OF FILE
//============================================================+
\ No newline at end of file
//============================================================+
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment