diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-11 14:14:37 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-11 14:14:37 +0100 |
commit | c544a631d52c9750fb4342577b68303245abc9ee (patch) | |
tree | 8b9d95cb2b8ce6a7ec58a17e123fa07aff9cfc55 /lib/setup.php | |
parent | 36df2fbdfedd6bdf9429fb11f516913c8afe7229 (diff) | |
download | nextcloud-server-c544a631d52c9750fb4342577b68303245abc9ee.tar.gz nextcloud-server-c544a631d52c9750fb4342577b68303245abc9ee.zip |
fixing indent
Diffstat (limited to 'lib/setup.php')
-rw-r--r-- | lib/setup.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/setup.php b/lib/setup.php index 035f1b6b8eb..cfaf7288663 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -382,7 +382,7 @@ class OC_Setup { $result = pg_query($connection, $query); if(!$result) { $entry = $l->t('DB Error: "%s"', array(pg_last_error($connection))) . '<br />'; - $entry .= $l->t('Offending command was: "%s"', array($query)) . '<br />'; + $entry .= $l->t('Offending command was: "%s"', array($query)) . '<br />'; echo($entry); } @@ -520,14 +520,14 @@ class OC_Setup { $stmt = oci_parse($connection, $query); if (!$stmt) { $entry = $l->t('DB Error: "%s"', array(oci_error($connection))) . '<br />'; - $entry .= $l->t('Offending command was: "%s"', array($query)) . '<br />'; + $entry .= $l->t('Offending command was: "%s"', array($query)) . '<br />'; echo($entry); } oci_bind_by_name($stmt, ':un', $name); $result = oci_execute($stmt); if(!$result) { $entry = $l->t('DB Error: "%s"', array(oci_error($connection))) . '<br />'; - $entry .= $l->t('Offending command was: "%s"', array($query)) . '<br />'; + $entry .= $l->t('Offending command was: "%s"', array($query)) . '<br />'; echo($entry); } |