|
@@ -31,7 +31,9 @@ if ($domains_processed == 1) {
|
|
|
$group->defaults();
|
|
|
|
|
|
//create the user view combines username, organization, contact first and last name
|
|
|
- $db->exec("DROP VIEW view_users;");
|
|
|
+ $database = new database;
|
|
|
+ $database->execute("DROP VIEW view_users;", null);
|
|
|
+
|
|
|
$sql = "CREATE VIEW view_users AS ( \n";
|
|
|
$sql .= " select u.domain_uuid, u.user_uuid, d.domain_name, u.username, u.user_enabled, u.add_date, \n";
|
|
|
$sql .= " c.contact_uuid, c.contact_organization, c.contact_name_given, c.contact_name_family, \n";
|