diff options
author | Paul Menzel <pm.debian@googlemail.com> | 2012-02-19 20:44:23 +0100 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-02-19 19:26:53 -0400 |
commit | 33e712b78e5fbb93bc0200e96d6bff6869b9856f (patch) | |
tree | ea65fffc2eea17e4baaa293dd0d5b816efcd0e26 | |
parent | badbe8aae3adecf4efba41dc6858b49c7fed633d (diff) | |
download | ikiwiki-33e712b78e5fbb93bc0200e96d6bff6869b9856f.tar ikiwiki-33e712b78e5fbb93bc0200e96d6bff6869b9856f.tar.gz |
Bug#660549: ikiwiki: [PATCH] openid-jquery.js: Update URL of Wordpress favicon
From a3041e786fe9e09110218e83e996fe688f8376ea Mon Sep 17 00:00:00 2001
From: Paul Menzel <paulepanter@users.sourceforge.net>
Date: Sun, 19 Feb 2012 16:05:33 +0100
Subject: [PATCH] openid-jquery.js: Update URL of Wordpress favicon
The URL for the favicon for Wordpress in the OpenID login page [1] is not valid anymore and gives the following access denied error.
<?xml version="1.0" encoding="UTF-8"?>
<Error><Code>AccessDenied</Code><Message>Access Denied</Message><RequestId>C2BF55AE9F76A487</RequestId><HostId>FFmvol84V82UR34uxP1N7pDNGSLWS0QDtLBsP5JKj0GcU//C3jm3TftcIcGzFBbh</HostId></Error>
Looking at the Wordpress site I found a different URL for the favicon [2].
The other URLs only use non-secured HTTP access and therefore I only took the http version, although I do not know about the downsides.
[1] https://ddgw.s3.amazonaws.com/wordpress.org.ico
[2] http://s2.wp.com/i/favicon.ico
-rw-r--r-- | underlays/openid-selector/ikiwiki/openid/openid-jquery.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/underlays/openid-selector/ikiwiki/openid/openid-jquery.js b/underlays/openid-selector/ikiwiki/openid/openid-jquery.js index c59be1edc..056110384 100644 --- a/underlays/openid-selector/ikiwiki/openid/openid-jquery.js +++ b/underlays/openid-selector/ikiwiki/openid/openid-jquery.js @@ -38,7 +38,7 @@ var providers_small = { }, wordpress: { name: 'Wordpress', - icon: 'https://ddgw.s3.amazonaws.com/wordpress.org.ico', + icon: 'https://s2.wp.com/i/favicon.ico', label: 'Enter your Wordpress.com username:', url: 'http://{username}.wordpress.com/' }, |