Browse Source

remove default tablespace in parameter

tags/v6.0.0alpha2
Jörn Friedrich Dreyer 11 years ago
parent
commit
9498cf959f
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      lib/setup.php

+ 3
- 3
lib/setup.php View File

@@ -442,8 +442,8 @@ class OC_Setup {
}
}

private static function setupOCIDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix,
$dbtablespace = 'USERS', $username) {
private static function setupOCIDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $dbtablespace,
$username) {
$l = self::getTrans();
$e_host = addslashes($dbhost);
$e_dbname = addslashes($dbname);
@@ -555,7 +555,7 @@ class OC_Setup {
* @param String $tablespace
* @param resource $connection
*/
private static function oci_createDBUser($name, $password, $tablespace = 'USERS', $connection) {
private static function oci_createDBUser($name, $password, $tablespace, $connection) {
$l = self::getTrans();
$query = "SELECT * FROM all_users WHERE USERNAME = :un";
$stmt = oci_parse($connection, $query);

Loading…
Cancel
Save