Angel Fernando Quiroz Campos
38d8bce275
Plugin: Azure: Add option to filter groups by display name - refs BT#21930
9 months ago
Nicolas Ducoulombier
24858995a7
Merge pull request #5934 from AngelFQC/BT21930
...
Plugin: Azure: Add options to user delta queries when syncing
9 months ago
Angel Fernando Quiroz Campos
10b6d6125d
Fix undefined index in request
9 months ago
Angel Fernando Quiroz Campos
49816b6855
Display: Load missing i18n files for date and time pickers - refs BT#21354
9 months ago
Angel Fernando Quiroz Campos
7129190ada
Minor: Format code
9 months ago
Angel Fernando Quiroz Campos
1f95891d84
Merge remote-tracking branch 'origin/1.11.x' into 1.11.x
9 months ago
Yannick Warnier
8c16c19299
Internal: Revert PHP 8 compatibility improvement in api_htmlentities() as it causes issues filtering HTML tags in HTML titles - refs BT#22321
9 months ago
Nicolas Ducoulombier
31e06df39a
Merge pull request #6001 from AngelFQC/BT#22232-2
...
Portfolio: Add portfolio_show_base_course_post_in_sessions conf setting
9 months ago
Angel Fernando Quiroz Campos
c6880d3554
Vendor: Remove brumann/polyfill-unserialize
...
> In case you are using PHP 7.0+ the original unserialize() will be used instead.
9 months ago
Angel Fernando Quiroz Campos
a025de461a
Portfolio: Duplicate post in sessión when commenting if portfolio_show_base_course_post_in_sessions is enabled - refs BT#22232
9 months ago
Angel Fernando Quiroz Campos
918416a844
Portfolio: List course base content in session when portfolio_show_base_course_post_in_sessions is enabled - refs BT#22232
9 months ago
Angel Fernando Quiroz Campos
e661cbb293
Portfolio: Add portfolio_show_base_course_post_in_sessions conf setting - refs BT#22232
...
Show base course posts in session course. Requires DB changes and edit the Portfolio entity adding the "@" symbol to the beginning of ORM\ManyToOne, ORM\JoinColumn, ORM\OneToMany lines for the Portfolio::$duplicatedFrom and Portfolio::$duplicates properties.
ALTER TABLE portfolio ADD duplicated_from INT DEFAULT NULL;
ALTER TABLE portfolio ADD CONSTRAINT FK_A9ED1062FC4CB679 FOREIGN KEY (duplicated_from) REFERENCES portfolio (id) ON DELETE SET NULL;
CREATE INDEX IDX_A9ED1062FC4CB679 ON portfolio (duplicated_from);
9 months ago
Nicolas Ducoulombier
8a7a108d85
Merge pull request #5995 from christianbeeznest/Aix-21977-5
...
Course: Fix export mbz validation, root-only resources, skip empty folders - refs BT#21977
9 months ago
Christian Beeznest
542765cb63
Course: Fix export mbz validation, root-only resources, skip empty folders - refs BT#21977
9 months ago
Angel Fernando Quiroz Campos
34975cd966
Internal: Portfolio: Add types to entity properties - refs BT#22232
9 months ago
Angel Fernando Quiroz Campos
c60a4e23f5
Plugin: OnlyOffice: Fix E_NOTICEs when api_get_setting is not returning an array value
9 months ago
Yannick Warnier
9511cee2db
Merge branch '1.11.x' of github.com:chamilo/chamilo-lms into 1.11.x
9 months ago
Yannick Warnier
4fead7c2bc
Minor: Code indentation & PHPDoc
9 months ago
Angel Fernando Quiroz Campos
2d12af3491
Internal: Remove return type mixed
...
The mixed return type is available from php8.0
9 months ago
Angel Fernando Quiroz Campos
d617e04be7
Internal: Fix ErrorCorrectionLevel::MEDIUM constant usage
9 months ago
Angel Fernando Quiroz Campos
e117d3f69f
Add missing use of ReflectionClass
9 months ago
Yannick Warnier
600d8a1a92
Internal: Fix various PHP8 compatibility issues to reduce error messages
9 months ago
Yannick Warnier
c1ef468168
Merge branch '1.11.x' of github.com:chamilo/chamilo-lms into 1.11.x
9 months ago
Yannick Warnier
822ae55513
Security: Plugin: OnlyOffice: Add filtering to new filenames created through the plugin
9 months ago
Yannick Warnier
ab1f124dfd
Plugin: OnlyOffice: Add OnlyOffice viewer by default for corresponding extensions in documents tool - refs #5395
9 months ago
Yannick Warnier
3439ff1d71
Documentation: Add precision bout the syntax for new RewriteRule with Apache > 2.4.38-3
9 months ago
NicoDucou
b21a8a27fb
Exercise: fix delete attempt from pending exercice page - refs BT#22272
9 months ago
NicoDucou
b590a170d6
Internal: Fix warning and error with php8
9 months ago
Nicolas Ducoulombier
02fae33e52
Merge pull request #5962 from christianbeeznest/Ifa-22235
...
Gossary: Fix load glossary from base course if not found in session - refs BT#22235
9 months ago
Nicolas Ducoulombier
a52de436ca
Merge pull request #5961 from christianbeeznest/alter-22234
...
Session: Fix session course position handling in CSV export/import - refs BT#22234
9 months ago
Christian Beeznest
ca83c918ea
Gossary: Fix load glossary from base course if not found in session - refs BT#22235
9 months ago
Christian Beeznest
f846c25403
Session: Fix session course position handling in CSV export/import - refs BT#22234
9 months ago
Yannick Warnier
e11bb258e5
Plugin: OnlyOffice: Add checked vendor/ to git
9 months ago
Angel Fernando Quiroz Campos
7212fb2a1e
Work: Security: Sanitize file name that could import document with special characters - refs BT#22273
9 months ago
Angel Fernando Quiroz Campos
3075eeba7a
Dropbox: Security: Sanitize file name that could import document with special characters - refs BT#22273
9 months ago
Angel Fernando Quiroz Campos
406e0dd5f4
Gradebook: Fix theme image paths in certificates - refs BT#22231
9 months ago
Angel Fernando Quiroz Campos
f915007524
Security: Confirm delete action with modal instead of alert
...
Fix advisory GHSA-gw58-89f7-4xgj
9 months ago
Angel Fernando Quiroz Campos
82cc07edd8
Security: Remove on* attributes through new filter of HTML Purifier
...
Fix advisory GHSA-gw58-89f7-4xgj
9 months ago
Angel Fernando Quiroz Campos
241c569dde
Security: Remove on* attributes for input text fields
...
Fix advisory GHSA-gw58-89f7-4xgj
9 months ago
Angel Fernando Quiroz Campos
5e10316787
Plugin: Azure: Bump version to v2.5 - refs BT#21930
10 months ago
Angel Fernando Quiroz Campos
286b61d167
Plugin: Azure: Add options to user delta queries when syncing - refs BT#21930
...
Requires DB changes:
```sql
CREATE TABLE azure_ad_sync_state (id INT AUTO_INCREMENT NOT NULL, title VARCHAR(255) NOT NULL, value LONGTEXT NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB;
```
10 months ago
NicoDucou
2c779cbc56
Exercise: Fix hide_expected_answer exercise option for fill in the blank question type - refs BT#21969
10 months ago
Angel Fernando Quiroz Campos
8bcf1c1678
LP: Plugin: Allow to show PDF files with onlyoffice when enabled - refs BT#22195 #5917
10 months ago
Angel Fernando Quiroz Campos
54d55b59b4
LP: Avoid to show PDF files with embed view - refs BT#22195
10 months ago
Angel Fernando Quiroz Campos
a0322486a5
Group: Fix advanced search when adding user to class - refs BT#22195
10 months ago
Angel Fernando Quiroz Campos
d12798db17
Remove E_NOTICE about undefined variable - refs BT#22195
10 months ago
NicoDucou
da839c3f8c
Editor: Allow all domain in iframes insertion if setting to allow iframe is true in HTMLPurifier filter - refs BT#22175 BT#22102
10 months ago
Angel Fernando Quiroz Campos
a591c25b57
Userportal: Fix coach url when it is null - refs BT#21436
10 months ago
NicoDucou
e63569abb7
LDAP: Fix encrypted password generation to use the api function which is updated and not the local function that ended being different - refs BT#20849 and BT#22020
11 months ago
Angel Fernando Quiroz Campos
4cef771e90
Merge remote-tracking branch 'origin/1.11.x' into 1.11.x
11 months ago