Angel Fernando Quiroz Campos
5235c0ee18
Quiz: Fix expected choice column for multiple answer dropdown - refs BT#20086
3 years ago
Angel Fernando Quiroz Campos
d123c3bb6d
Quiz: Multiple answer dropdown is allowed as embeddable - refs BT#20086
3 years ago
Angel Fernando Quiroz Campos
0a220af0a3
Quiz: Break spaces in options for multiple answer dropdown - refs BT#20086
3 years ago
Angel Fernando Quiroz Campos
4ae151feba
Quiz: use first line when importing CSV to add multiple answer dropdown - refs BT#20086
3 years ago
Angel Fernando Quiroz Campos
ad9e28fec6
Allow import CSV column - refs BT#20086
3 years ago
Angel Fernando Quiroz Campos
996155ec05
Quiz: Add icons for question type Multiple Answer Dropdown - refs BT#20086
3 years ago
Angel Fernando Quiroz Campos
77bf120d77
Quiz: Add new question type Multiple Answer Dropdown - refs BT#20086
3 years ago
Angel Fernando Quiroz Campos
b66d3da61c
Minor: Format code
3 years ago
Angel Fernando Quiroz Campos
4d8e05831e
Quiz: Fix table to show question
3 years ago
Angel Fernando Quiroz Campos
80d103357a
Quiz: Fix division by zero + fix e_notice
3 years ago
NicoDucou
da15eaa0c3
Language: Minor partial translation update in FR to fix password requirement text -refs BT#20083
3 years ago
Nicolas Ducoulombier
7df1bf7997
Merge pull request #4348 from christianbeeznest/Aix-20060
...
Course import - Improve import quizzes from moodle to chamilo - refs BT#20060
3 years ago
Christian
5de0d28bff
Course import - Fix display order of items imported from sections - refs BT#20060
3 years ago
Christian
5828c24804
Course import - Fix path in text for pages and label - refs BT#20060
3 years ago
Angel Fernando Quiroz Campos
48e4213071
Fix admin user list with wrong sortable column - refs BT#20104
3 years ago
Yannick Warnier
a2f00c5870
Internal: Reorder fields when saving course properties in administration to match fields order in infocours.php - refs BT#20098
3 years ago
NicoDucou
d7443216fe
BBB Plugin: Fix for Global conference per user showing all conferences from the plateform instead of only the user's conference -refs #4233 and BT#20053
3 years ago
Nicolas Ducoulombier
6fac4bcfeb
Merge pull request #4353 from christianbeeznest/EFC-19049
...
Survey - Add export options when it is enabled as lp items - refs BT#19049
3 years ago
Christian
7d5ecb4eb4
Course import - Add import of lessons from moodle to chamilo - refs BT#20060
3 years ago
Angel Fernando Quiroz Campos
9388a5db4a
Plugin: OAuth2: Fix catch BadMethodCallException when refreshing token - refs BT#19734
3 years ago
NicoDucou
65bfb3eb5b
Language: Minor partial translation update in ES FR EN for inactivating account after x login failed -refs BT#20083
3 years ago
Nicolas Ducoulombier
3c9b870b87
Merge pull request #4352 from AngelFQC/BT20083
...
Security: Improve password requirements
3 years ago
Yannick Warnier
07757811ff
Plugin: OAuth2: Catch BadMethodCallException when getRefreshToken() returns empty - refs BT#19734
3 years ago
NicoDucou
3bd844250a
Learnpath: Only log fixAbusiveTime when the server is in test mode -refs BT20099
3 years ago
NicoDucou
b348f8ed62
Learnpath: Avoid calling function if the object does not existe to avoid error logs on a NULL value -refs BT#20099
3 years ago
Christian
b77c76455d
Course import - Import scorm, assignment and lession partial from module xml - refs BT#20060
3 years ago
Yannick Warnier
ad7a62872e
Merge branch 'cblue-fix-pass' into 1.11.x
3 years ago
Yannick Warnier
4047e1a197
Minor: Fix code styling
3 years ago
Yannick Warnier
6c9deb8d8c
Merge branch 'fix_password_encryption_conversion' of https://github.com/cbluesprl/chamilo-lms into cblue-fix-pass
3 years ago
Christian
da4c24712f
Course import - Import glossary from module xml - refs BT#20060
3 years ago
Christian
da4086a0dd
Survey - Add export options when it is enabled as lp items - refs BT#19049
3 years ago
Angel Fernando Quiroz Campos
f2fac0b4bf
Fix password generator with special chars - refs BT#20083
3 years ago
Angel Fernando Quiroz Campos
c40e63d427
Minor - Remove unnecessary param - refs BT#20083
3 years ago
Angel Fernando Quiroz Campos
328bada615
User: Show password requirement when password rules is set - refs BT#20083
3 years ago
Angel Fernando Quiroz Campos
46ab447f4c
User: Fix text using lang variable - refs BT#20083
3 years ago
NicoDucou
8894353cc3
Language: Minor partial translation update in ES FR EN for class filtering in multiURL user management -refs BT#20059
3 years ago
Nicolas Ducoulombier
b80d3793b4
Merge pull request #4342 from lautarobeeznest/client-20059
...
Access Urls: Edit users and URLs: Add a filter by class - refs BT#20059
3 years ago
LautaroRolon
9db9e23e57
FIX: Code syntax - refs BT#20059
3 years ago
Yannick Warnier
661d151ea3
Display: Rename item class to avoid overlap - refs BT#19510
3 years ago
NicoDucou
e2693b3fdb
Language: Minor partial translation update in ES FR EN for new password requierements -refs BT#20083
3 years ago
Nicolas Ducoulombier
03815074e9
Merge pull request #4350 from AngelFQC/BT20083
...
Security: Improve password requirements - refs BT#20083
3 years ago
LautaroRolon
852ca893df
Minor: Code syntax - refs BT#20059
3 years ago
LautaroRolon
f8f330a878
Access Urls: Code syntax FIX: Change course filter by class - refs BT#20059
3 years ago
Angel Fernando Quiroz Campos
01541817c3
User: Admin can not set new password equal to current - refs BT#20083
3 years ago
Angel Fernando Quiroz Campos
620af67568
User: Add FormValidator rule for new password no same as current - refs BT#20083
3 years ago
Christian
4ab6aabdb3
Course import - Improve moodle import by sections to chamilo - refs BT#20060
3 years ago
Angel Fernando Quiroz Campos
3fddcc0aa8
User: Add login_max_attempt_before_blocking_account configuration setting - refs BT#20083
...
Block a user account if there are multiple failed login attempts. It requires DB changes:
```sql
CREATE TABLE track_e_login_attempt
(
login_id INT AUTO_INCREMENT NOT NULL,
username VARCHAR(100) NOT NULL,
login_date DATETIME NOT NULL,
user_ip VARCHAR(39) NOT NULL,
success TINYINT(1) NOT NULL,
INDEX idx_track_e_login_attempt_username_success (username, success),
PRIMARY KEY (login_id)
) DEFAULT CHARACTER SET utf8
COLLATE utf8_unicode_ci
ENGINE = InnoDB;
```
Then add the "@" symbol to TrackELoginAttempt` class in the `ORM\Entity()` line.
3 years ago
Angel Fernando Quiroz Campos
88ac26d53d
User: Indicate password requirements failed - refs BT#20083
3 years ago
Angel Fernando Quiroz Campos
a1ce6c1ff6
User: Reset password follow password requirements - refs BT#20083
3 years ago
Angel Fernando Quiroz Campos
fd8d817582
User: Fix password requirement for lowercase - refs BT#20083
3 years ago