From: Brenda Wallace Date: Mon, 16 Aug 2010 01:26:27 +0000 (+1200) Subject: fixed a %d that should be a %s in an error message X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e687862ca126ef6483fe874303bce730f78feb5c;p=quix0rs-gnu-social.git fixed a %d that should be a %s in an error message --- 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; } }