Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2016-05-17 11:10:13 +0300
committerMichal Čihař <michal@cihar.com>2016-05-17 11:10:13 +0300
commit3771852471a0f5bd8402785daed83228cb206946 (patch)
tree29141ccb2237d48ee792f80883923f885efbd974 /examples
parent90b126beed7877e98934b7a649180cbe58c464a3 (diff)
Use https when linking to php.net
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/openid.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/openid.php b/examples/openid.php
index 852c97b7e3..da4a13fb53 100644
--- a/examples/openid.php
+++ b/examples/openid.php
@@ -7,7 +7,7 @@
* not intended to be perfect code and look, only shows how you can
* integrate this functionality in your application.
*
- * It uses OpenID pear package, see http://pear.php.net/package/OpenID
+ * It uses OpenID pear package, see https://pear.php.net/package/OpenID
*
* User first authenticates using OpenID and based on content of $AUTH_MAP
* the login information is passed to phpMyAdmin in session data.
@@ -24,7 +24,7 @@ if (false === @include_once 'OpenID/RelyingParty.php') {
* Map of authenticated users to MySQL user/password pairs.
*/
$AUTH_MAP = array(
- 'http://launchpad.net/~username' => array(
+ 'https://launchpad.net/~username' => array(
'user' => 'root',
'password' => '',
),