0.3.1 fix error in html script

This commit is contained in:
ulaulaman 2018-02-09 12:46:00 +01:00 committed by GitHub
parent d7311088b2
commit f5f9c4bf4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
/*
Plugin Name: Citations tools
Description: Some tools for scientific and editorial bloggers.
Version: 0.3
Version: 0.3.1
Author: Gianluigi Filippelli
Author URI: http://dropseaofulaula.blogspot.it/
Plugin URI: https://ulaulaman.github.io/citations-tools/
@ -25,7 +25,7 @@ add_shortcode('ctdoi', 'ctdoi');
)
);
$link = '<a href="https://dx.doi.org/'.$code.'/" target="doi">'.$content.'</a>';
$link = '<a href="https://dx.doi.org/'.$code.'" target="doi">'.$content.'</a>';
return $link;
}