Skip to content

Commit

Permalink
Added missing parameter for error message
Browse files Browse the repository at this point in the history
  • Loading branch information
lencioni committed Mar 2, 2012
1 parent fb20671 commit 01273be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/slirinstaller.class.php
Expand Up @@ -365,7 +365,7 @@ private function initializeErrorLog()
}
} else if (!is_writable(SLIRConfig::$pathToErrorLog)) {
// Error log exists, but is not writable
return new NegativeSLIRInstallerResponse(sprintf('Error log exists at <code>%s</code> but is not writable. Please make sure the web server has permission to write to this file. If you would like to change the path of this file, set $pathToErrorLog in slirconfig.class.php and run the installer again.'));
return new NegativeSLIRInstallerResponse(sprintf('Error log exists at <code>%s</code> but is not writable. Please make sure the web server has permission to write to this file. If you would like to change the path of this file, set $pathToErrorLog in slirconfig.class.php and run the installer again.', SLIRConfig::$pathToErrorLog));
} else {
// Everything is good
return new PositiveSLIRInstallerResponse(sprintf('Error log exists at <code>%s</code> and is writable by the web server. If you would like to change the path of this file, set $pathToErrorLog in slirconfig.class.php and run the installer again.', SLIRConfig::$pathToErrorLog));
Expand Down

0 comments on commit 01273be

Please sign in to comment.