Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add recommendation for installing ezplatformsearch & richtext-datatype-bundle #143

Merged
merged 4 commits into from
Feb 6, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
CS
  • Loading branch information
andrerom authored Feb 6, 2018
commit 402b419a1b14bd10df0433ea2dc133fb66d53b78
5 changes: 3 additions & 2 deletions bundle/Cache/PersistenceCachePurger.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,12 @@ public function content($locationIds = null, array $contentIds = null)
// if caller did not provide affected content id's, then try to load location to get it
try {
$tags[] = 'content-' . $this->locationHandler->load($id)->contentId;
} catch (APINotFoundException $e) {}
} catch (APINotFoundException $e) {
}
}
}

foreach($contentIds as $id) {
foreach ($contentIds as $id) {
if (!is_scalar($id)) {
throw new InvalidArgumentType('$contentIds', 'int[]|null', $id);
}
Expand Down