add Character type pictures to Character registration page (Issue #97)

This commit is contained in:
coderkun 2014-04-24 03:53:51 +02:00
commit ea1c3ec7b3
3 changed files with 23 additions and 4 deletions

View file

@ -242,6 +242,9 @@
}
}
// Get XP-levels
$xplevels = $this->Characters->getXPLevelsForSeminary($seminary['id']);
// Pass data to view
$this->set('seminary', $seminary);
@ -250,6 +253,7 @@
$this->set('charactername', $charactername);
$this->set('validation', $validation);
$this->set('fieldsValidation', $fieldsValidation);
$this->set('xplevels', $xplevels);
}