mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-18 07:23:13 +00:00
PHRAS-681 - fix variable initialisation
This commit is contained in:
@@ -29,7 +29,7 @@ class Prod extends Helper
|
|||||||
return $searchData;
|
return $searchData;
|
||||||
}
|
}
|
||||||
|
|
||||||
$searchSet = json_decode($this->app['settings']->getUserSetting($this->app->getAuthenticatedUser(), 'search'), true);
|
$searchSet = json_decode($this->app['settings']->getUserSetting($this->app->getAuthenticatedUser(), 'search', '{}'), true);
|
||||||
$saveSettings = $this->app['settings']->getUserSetting($this->app->getAuthenticatedUser(), 'advanced_search_reload');
|
$saveSettings = $this->app['settings']->getUserSetting($this->app->getAuthenticatedUser(), 'advanced_search_reload');
|
||||||
$acl = $this->app->getAclForUser($this->app->getAuthenticatedUser());
|
$acl = $this->app->getAclForUser($this->app->getAuthenticatedUser());
|
||||||
foreach ($acl->get_granted_sbas() as $databox) {
|
foreach ($acl->get_granted_sbas() as $databox) {
|
||||||
@@ -102,7 +102,7 @@ class Prod extends Helper
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (array_key_exists('elasticSort', $searchSet)){
|
if (isset($searchSet['elasticSort'])) {
|
||||||
$elasticSort = $searchSet['elasticSort'];
|
$elasticSort = $searchSet['elasticSort'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user