We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bef46bc commit 6ae2745Copy full SHA for 6ae2745
src/SavedSearch.php
@@ -220,10 +220,11 @@ public function post_addItem()
220
{
221
// for search saved as public, automatically create a link with its entity
222
if (isset($this->input['is_private']) && !$this->input['is_private']) {
223
+ Toolbox::logInfo($this);
224
$item = new Entity_SavedSearch();
225
$item->add([
226
'savedsearches_id' => $this->getID(),
- 'entites_id' => $this->fields['entities_id'],
227
+ 'entities_id' => $this->fields['entities_id'],
228
'is_recursive' => $this->fields['is_recursive']
229
]);
230
}
0 commit comments