diff options
author | Brenda Wallace <shiny@cpan.org> | 2010-01-23 13:03:51 +1300 |
---|---|---|
committer | Brenda Wallace <shiny@cpan.org> | 2010-01-23 13:03:51 +1300 |
commit | 3af689f71bcc974fdbc698e05f6926e566886057 (patch) | |
tree | 446de7d654fb049fb76812aa096a9832bab0ae5f | |
parent | 0a586f0d1e9326dfd88ccf62bc9a00071d565664 (diff) |
fixed misleading error message that tells you to install "tidy" to get mysql|pgsql working
-rw-r--r-- | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php index 425ea91ef..37eed176b 100644 --- a/install.php +++ b/install.php @@ -248,7 +248,7 @@ function checkPrereqs() } } if (!checkExtension('pgsql') && !checkExtension('mysql')) { - ?><p class="error">Cannot find mysql or pgsql extension. You need one or the other: <code><?php echo $req; ?></code></p><?php + ?><p class="error">Cannot find mysql or pgsql extension. You need one or the other.</p><?php $pass = false; } |