redirect to overview instead of edit after creating a new Character title

This commit is contained in:
oliver 2016-03-26 19:15:23 +01:00
parent 74b093a61f
commit 699d1aaa84

View file

@ -129,8 +129,16 @@
);
$title = $this->Charactertitles->getTitleById($titleId);
// Redirect to editing
$this->redirect($this->linker->link(array('edit', $seminary['url'], $title['hash']), 1));
// Redirect to overview
$this->redirect(
$this->linker->link(
array(
'index',
$seminary['url']
),
1
)
);
}
}