summaryrefslogtreecommitdiffstats
path: root/lib/setup.php
diff options
context:
space:
mode:
authorBart Visscher <bart@thisnet.nl>2011-09-18 20:57:05 +0200
committerBart Visscher <bart@thisnet.nl>2011-09-18 20:57:05 +0200
commit8966ed5a004a9b830f093355170d381566d58554 (patch)
treec114ef6ceb1e385b10bf015ce3ad00bae5ed89bd /lib/setup.php
parent82c7598861db175617694891bb9f21b426426225 (diff)
downloadnextcloud-server-8966ed5a004a9b830f093355170d381566d58554.tar.gz
nextcloud-server-8966ed5a004a9b830f093355170d381566d58554.zip
Cleanup lib/base.php
Diffstat (limited to 'lib/setup.php')
-rw-r--r--lib/setup.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setup.php b/lib/setup.php
index 7183eb624a8..7b205acd705 100644
--- a/lib/setup.php
+++ b/lib/setup.php
@@ -235,7 +235,7 @@ class OC_Setup {
}
private static function createDBUser($name,$password,$connection) {
- // we need to create 2 accounts, one for global use and one for local user. if we don't speccify the local one,
+ // we need to create 2 accounts, one for global use and one for local user. if we don't specify the local one,
// the anonymous user would take precedence when there is one.
$query = "CREATE USER '$name'@'localhost' IDENTIFIED BY '$password'";
$result = mysql_query($query, $connection);