summaryrefslogtreecommitdiffstats
path: root/lib/setup.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-02-26 20:48:01 +0100
committerBart Visscher <bartv@thisnet.nl>2013-02-26 20:48:01 +0100
commit4a26d638673ab3745108dd4254f71777f76ea154 (patch)
tree383569846d5fa6f66181b2e8de7b1294c8bc24e1 /lib/setup.php
parent7eec31567fd699f3fac10c5d5bb5311874b235f1 (diff)
downloadnextcloud-server-4a26d638673ab3745108dd4254f71777f76ea154.tar.gz
nextcloud-server-4a26d638673ab3745108dd4254f71777f76ea154.zip
Fix using wrong quotes for breaking long lines
Fixes #1925
Diffstat (limited to 'lib/setup.php')
-rw-r--r--lib/setup.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/setup.php b/lib/setup.php
index fd5f3cd5bee..b7fe2f6a2cc 100644
--- a/lib/setup.php
+++ b/lib/setup.php
@@ -261,8 +261,8 @@ class OC_Setup {
}
//fill the database if needed
- $query="select count(*) from information_schema.tables'
- .' where table_schema='$dbname' AND table_name = '{$dbtableprefix}users';";
+ $query='select count(*) from information_schema.tables'
+ ." where table_schema='$dbname' AND table_name = '{$dbtableprefix}users';";
$result = mysql_query($query, $connection);
if($result) {
$row=mysql_fetch_row($result);
@@ -454,8 +454,8 @@ class OC_Setup {
}
//check for roles creation rights in oracle
- $query="SELECT count(*) FROM user_role_privs, role_sys_privs'
- .' WHERE user_role_privs.granted_role = role_sys_privs.role AND privilege = 'CREATE ROLE'";
+ $query='SELECT count(*) FROM user_role_privs, role_sys_privs'
+ ." WHERE user_role_privs.granted_role = role_sys_privs.role AND privilege = 'CREATE ROLE'";
$stmt = oci_parse($connection, $query);
if (!$stmt) {
$entry = $l->t('DB Error: "%s"', array(oci_last_error($connection))) . '<br />';