X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/8d68ecdd7b1c45cb2a5cf592b8d504d7e4614911..7218f84ad58ed22a926b3ffa7a152ca7f93f0204:/dbinstall.php diff --git a/dbinstall.php b/dbinstall.php index 1c95fc28..8dfe1bf1 100644 --- a/dbinstall.php +++ b/dbinstall.php @@ -771,7 +771,7 @@ if ($_POST) { $mdb2 = getConnection(); - $sql = "select u.id, u.team_id, u.role, u.status, t.lang from tt_users u inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.44') left join tt_teams t on (u.team_id = t.id) where u.role_id is NULL and u.status is NOT NULL"; + $sql = "select u.id, u.team_id, u.role, t.lang from tt_users u inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.44') left join tt_teams t on (u.team_id = t.id) where u.role_id is NULL and u.status is NOT NULL"; $res = $mdb2->query($sql); if (is_a($res, 'PEAR_Error')) die($res->getMessage());