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

@ -392,6 +392,19 @@
}
public function getXPLevelsForSeminary($seminaryId)
{
return $this->db->query(
'SELECT id, xps, level, name '.
'FROM xplevels '.
'WHERE seminary_id = ? '.
'ORDER BY level ASC',
'i',
$seminaryId
);
}
/**
* Check if a Character name already exists.
*