]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fixed a %d that should be a %s in an error message
authorBrenda Wallace <shiny@cpan.org>
Mon, 16 Aug 2010 01:26:27 +0000 (13:26 +1200)
committerBrion Vibber <brion@pobox.com>
Mon, 16 Aug 2010 17:03:58 +0000 (10:03 -0700)
lib/installer.php

index ff2bed1403adad3508dfe0847afe5b4e7aa8f923..2eff2d85ac04b23f5fb8c8c3ab4a4fb950548050 100644 (file)
@@ -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;
             }
         }