mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-10 07:14:59 +02:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user