Revoke DB rights on install only if the db is newly created

This commit is contained in:
Brice Maron 2012-12-03 20:20:17 +00:00
parent 4cb760a924
commit 4327ed8382
1 changed files with 4 additions and 2 deletions

View File

@ -319,9 +319,11 @@ class OC_Setup {
$entry.='Offending command was: '.$query.'<br />';
echo($entry);
}
else {
$query = "REVOKE ALL PRIVILEGES ON DATABASE \"$e_name\" FROM PUBLIC";
$result = pg_query($connection, $query);
}
}
$query = "REVOKE ALL PRIVILEGES ON DATABASE \"$e_name\" FROM PUBLIC";
$result = pg_query($connection, $query);
}
private static function pg_createDBUser($name, $password, $connection) {