diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-09-03 22:53:03 -0700 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-09-03 22:53:03 -0700 |
commit | 09187f3b3b30e6f810c6afff7332615ed472154e (patch) | |
tree | 3018bef5d383a3da3f1a7709acb7e7910a4fe935 /lib/setup/postgresql.php | |
parent | 6435e18e95bc283af051d141fad204660d7f7eba (diff) | |
parent | e5fc7b9dbeb01ac116bb132903c562c8f7d3c5b3 (diff) | |
download | nextcloud-server-09187f3b3b30e6f810c6afff7332615ed472154e.tar.gz nextcloud-server-09187f3b3b30e6f810c6afff7332615ed472154e.zip |
Merge pull request #4449 from owncloud/clean_up_util
Clean up \OC\Util
Diffstat (limited to 'lib/setup/postgresql.php')
-rw-r--r-- | lib/setup/postgresql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setup/postgresql.php b/lib/setup/postgresql.php index 49fcbf0326e..89d328ada19 100644 --- a/lib/setup/postgresql.php +++ b/lib/setup/postgresql.php @@ -33,7 +33,7 @@ class PostgreSQL extends AbstractDatabase { //add prefix to the postgresql user name to prevent collisions $this->dbuser='oc_'.$username; //create a new password so we don't need to store the admin config in the config file - $this->dbpassword=\OC_Util::generate_random_bytes(30); + $this->dbpassword=\OC_Util::generateRandomBytes(30); $this->createDBUser($connection); |