Skip to content
Snippets Groups Projects
Commit 797ef687 authored by lucha's avatar lucha Committed by agata
Browse files

remove hotlinking of images in creative-commons-license-widget

parent a04b3058
No related branches found
No related tags found
No related merge requests found
Showing
with 5 additions and 5 deletions
...@@ -81,7 +81,7 @@ function widget_ccLicense_init() { ...@@ -81,7 +81,7 @@ function widget_ccLicense_init() {
// Creates widget configuration // Creates widget configuration
$text = ''; $text = '';
$licenseText = ''; $licenseText = '';
$imageUrl = ''; $imageUrl = plugins_url('images',__FILE__) . '/';
$licenseUrl = ''; $licenseUrl = '';
$url = ''; $url = '';
...@@ -137,16 +137,16 @@ function widget_ccLicense_init() { ...@@ -137,16 +137,16 @@ function widget_ccLicense_init() {
switch ($image) { switch ($image) {
case 'somerights20': case 'somerights20':
$imageUrl = 'http://creativecommons.org/images/public/somerights20.png'; $imageUrl = $imageUrl . 'somerights20.png';
break; break;
case '80x15': case '80x15':
$imageUrl = 'http://i.creativecommons.org/l/' . $url . '/3.0/80x15.png'; $imageUrl = $imageUrl . $url . '-80x15.png';
break; break;
case '88x31': case '88x31':
$imageUrl = 'http://i.creativecommons.org/l/' . $url . '/3.0/88x31.png'; $imageUrl = $imageUrl . $url . '-88x31.png';
break; break;
default: default:
$imageUrl = 'http://creativecommons.org/images/public/somerights20.png'; $imageUrl = $imageUrl . 'somerights20.png';
break; break;
} }
......
wp-content/plugins/creative-commons-license-widget/images/by-80x15.png

640 B

wp-content/plugins/creative-commons-license-widget/images/by-88x31.png

4.63 KiB

wp-content/plugins/creative-commons-license-widget/images/by-nc-80x15.png

672 B

wp-content/plugins/creative-commons-license-widget/images/by-nc-88x31.png

5.02 KiB

wp-content/plugins/creative-commons-license-widget/images/by-nc-nd-80x15.png

688 B

wp-content/plugins/creative-commons-license-widget/images/by-nc-nd-88x31.png

5.16 KiB

wp-content/plugins/creative-commons-license-widget/images/by-nc-sa-80x15.png

697 B

wp-content/plugins/creative-commons-license-widget/images/by-nc-sa-88x31.png

5.33 KiB

wp-content/plugins/creative-commons-license-widget/images/by-nd-80x15.png

665 B

wp-content/plugins/creative-commons-license-widget/images/by-nd-88x31.png

4.77 KiB

wp-content/plugins/creative-commons-license-widget/images/by-sa-80x15.png

672 B

wp-content/plugins/creative-commons-license-widget/images/by-sa-88x31.png

4.96 KiB

wp-content/plugins/creative-commons-license-widget/images/somerights20.png

958 B

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment