Skip to content
Snippets Groups Projects
Commit 05ebe9b1 authored by Stephen Mustgrave's avatar Stephen Mustgrave
Browse files

Issue #2222805 by Delphine Lepers, nwom, JvE, dtamajon, pkloos, khosman,...

Issue #2222805 by Delphine Lepers, nwom, JvE, dtamajon, pkloos, khosman, jay.lee.bio, cmseasy: Don't throw exception to hide empty blocks
parent ba41f72a
Branches
No related tags found
No related merge requests found
......@@ -182,7 +182,7 @@ class QuickSet {
* @throws InvalidQuickSetException if there are no contents to render.
*/
protected function prepareContents() {
if (!count($this->contents)) {
if (!count($this->contents) && !$this->settings['hide_empty_tabs']) {
throw new InvalidQuickSetException('There are no contents to render.');
}
if ($this->settings['hide_empty_tabs'] && !$this->settings['ajax']) {
......@@ -217,7 +217,7 @@ class QuickSet {
$renderable_contents++;
}
}
if (!$renderable_contents) {
if (!$renderable_contents && !$this->settings['hide_empty_tabs']) {
throw new InvalidQuickSetException('There are no contents to render.');
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment