From 086b474069371f6b6014260fbb4c40dbec8d8f8b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 2 Apr 2012 21:41:37 -0400 Subject: [PATCH] %s for a string --- lib/installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/installer.php b/lib/installer.php index 871b479a77..2fe83dd9a2 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -322,7 +322,7 @@ abstract class Installer $this->updateStatus(sprintf("Adding %s data to database...", $name)); $res = $this->runDbScript($scr.'.sql', $conn); 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; } }