]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixing indent
authorThomas Mueller <thomas.mueller@tmit.eu>
Mon, 11 Feb 2013 13:14:37 +0000 (14:14 +0100)
committerThomas Mueller <thomas.mueller@tmit.eu>
Mon, 11 Feb 2013 13:14:37 +0000 (14:14 +0100)
lib/setup.php

index 035f1b6b8ebd47429148b98f774fa94c58f8883c..cfaf728866305bf3ccd6f87917f9c3c2bf44ea4a 100644 (file)
@@ -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);
                }