related to #1704 Added alert is album is locked

* Corrected french sentences spelled wrong
* Added max length for album names in breadcrumbs
* Added attribute 'visible' in categories.setInfos
* Can now unlock an album by clicking on the alert
* Switch used to lock an album works properly now
This commit is contained in:
MatthieuLP
2023-01-04 18:06:10 +01:00
parent 4729504aac
commit 4e899b5eae
8 changed files with 109 additions and 10 deletions
+2 -1
View File
@@ -753,6 +753,7 @@ SELECT id
* @option int cat_id
* @option string name (optional)
* @option string status (optional)
* @option bool visible (optional)
* @option string comment (optional)
* @option bool commentable (optional)
* @option bool apply_commentable_to_subalbums (optional)
@@ -791,7 +792,7 @@ SELECT *
'id' => $params['category_id'],
);
$info_columns = array('name', 'comment','commentable');
$info_columns = array('name', 'comment','commentable', 'visible');
$perform_update = false;
foreach ($info_columns as $key)