Skip to content

Commit

Permalink
0028103: Failed test: Tabellen-Import .xlsx - "Neue Tabelle anlegen" …
Browse files Browse the repository at this point in the history
…- Whoops
  • Loading branch information
Theodor Truffer committed Apr 14, 2020
1 parent c493c87 commit af8d0f6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ public function __construct(ilDclTableListGUI $a_parent_obj)
$this->table = ilDclCache::getTableCache($this->table_id);

$this->ctrl->saveParameter($this, 'table_id');
$locator->addItem($this->table->getTitle(), $this->ctrl->getLinkTarget($this, 'edit'));
if ($this->table->getTitle()) {
$locator->addItem($this->table->getTitle(), $this->ctrl->getLinkTarget($this, 'edit'));
}
$this->tpl->setLocator();

if (!$this->checkAccess()) {
Expand Down

0 comments on commit af8d0f6

Please sign in to comment.