mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 04:53:26 +00:00
force searchable & printable to be boolean to be consistent
This commit is contained in:
@@ -1933,8 +1933,8 @@ class API_V1_adapter extends API_V1_Abstract
|
||||
'label_off' => $datas['labeloff'],
|
||||
'img_on' => $datas['img_on'],
|
||||
'img_off' => $datas['img_off'],
|
||||
'searchable' => $datas['searchable'],
|
||||
'printable' => $datas['printable'],
|
||||
'searchable' => ! ! $datas['searchable'],
|
||||
'printable' => ! ! $datas['printable'],
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user