summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrenda Wallace <shiny@cpan.org>2010-08-16 13:26:27 +1200
committerBrion Vibber <brion@pobox.com>2010-08-16 10:03:58 -0700
commit7f9ab683b259fc93d507eb705c84af0cfd2fae5b (patch)
treefb865b8e28ca5e8d15f5843334d6ae089e2f0783
parentfa778148876cad5d7ecc15866bf880d32d2f9da0 (diff)
fixed a %d that should be a %s in an error message
-rw-r--r--lib/installer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/installer.php b/lib/installer.php
index ff2bed140..2eff2d85a 100644
--- a/lib/installer.php
+++ b/lib/installer.php
@@ -319,7 +319,7 @@ abstract class Installer
$this->updateStatus(sprintf("Adding %s data to database...", $name));
$res = $this->runDbScript($scr.'.sql', $conn, 'pgsql');
if ($res === false) {
- $this->updateStatus(sprintf("Can't run %d script.", $name), true);
+ $this->updateStatus(sprintf("Can't run %s script.", $name), true);
return false;
}
}