"Installer" added

A very basic installer will appear when accessing the home page if there
are no users in the database. It allows the initial user to be created.
This commit is contained in:
Emmanuel BENOîT 2012-02-06 00:28:07 +01:00
parent 071577168a
commit 1271afd1d8
6 changed files with 60 additions and 7 deletions
includes/t-basics

View file

@ -74,6 +74,6 @@ class Dao_Users
public function hasUsers( )
{
$result = $this->query( 'SELECT COUNT(*) AS n_users FROM users' )->execute( );
return $result[0]->n_users;
return $result[0]->n_users > 0;
}
}