summaryrefslogtreecommitdiffstats
path: root/lib/setup.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/setup.php')
-rw-r--r--lib/setup.php6
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);
}