diff options
author | Brenda Wallace <shiny@cpan.org> | 2010-08-16 13:26:27 +1200 |
---|---|---|
committer | Brenda Wallace <shiny@cpan.org> | 2010-08-16 13:26:27 +1200 |
commit | e687862ca126ef6483fe874303bce730f78feb5c (patch) | |
tree | fa186057ef2ce575e4145c527f062bb59a41f526 /lib/installer.php | |
parent | c1cab9bfb83496d941f9a4da918d1e9221f3a08a (diff) |
fixed a %d that should be a %s in an error message
Diffstat (limited to 'lib/installer.php')
-rw-r--r-- | lib/installer.php | 2 |
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; } } |