diff options
author | Brion Vibber <brion@pobox.com> | 2010-03-08 13:32:18 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-08 13:32:18 -0800 |
commit | 7e7d88831cf8b3e8876499b86890da2e63b08c97 (patch) | |
tree | 1ca3cdfff39981206b3bf04702f059406db7a0c4 | |
parent | 217ad420ac8085fe620235dfc47bea27e4ac75dc (diff) |
CentOS 5.4 still bogus on a stock install.
-rw-r--r-- | extlib/Auth/OpenID/Consumer.php | 3 | ||||
-rw-r--r-- | install.php | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/extlib/Auth/OpenID/Consumer.php b/extlib/Auth/OpenID/Consumer.php index 500890b65..130fe0713 100644 --- a/extlib/Auth/OpenID/Consumer.php +++ b/extlib/Auth/OpenID/Consumer.php @@ -966,6 +966,9 @@ class Auth_OpenID_GenericConsumer { // framework will not want to block on this call to // _checkAuth. if (!$this->_checkAuth($message, $server_url)) { + var_dump($message); + var_dump($server_url); + var_dump($this); return new Auth_OpenID_FailureResponse(null, "Server denied check_authentication"); } diff --git a/install.php b/install.php index 7fece8999..929277e5e 100644 --- a/install.php +++ b/install.php @@ -308,7 +308,7 @@ function checkPrereqs() printf('<p class="error">PHP is linked to a version of the PCRE library ' . 'that does not support Unicode properties. ' . 'If you are running Red Hat Enterprise Linux / ' . - 'CentOS 5.3 or earlier, see <a href="' . + 'CentOS 5.4 or earlier, see <a href="' . 'http://status.net/wiki/Red_Hat_Enterprise_Linux#PCRE_library' . '">our documentation page</a> on fixing this.</p>'); $pass = false; |