fixed a %d that should be a %s in an error message

This commit is contained in:
Brenda Wallace 2010-08-16 13:26:27 +12:00
parent c1cab9bfb8
commit e687862ca1
1 changed files with 1 additions and 1 deletions

View 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;
}
}