From 7f9ab683b259fc93d507eb705c84af0cfd2fae5b Mon Sep 17 00:00:00 2001 From: Brenda Wallace Date: Mon, 16 Aug 2010 13:26:27 +1200 Subject: [PATCH] fixed a %d that should be a %s in an error message --- lib/installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/installer.php b/lib/installer.php index ff2bed1403..2eff2d85ac 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; } }