Re: /more-fields/more-plugins/more-plugins-admin.php
Lines 190 - 203 include this code:
function admin_head () {
add_thickbox();
?>
<script type="text/javascript">
/* <![CDATA[ */
(function() {
var s = document.createElement('script'), t = document.getElementsByTagName('script')[0];
s.type = 'text/javascript';
s.async = true;
s.src = 'http://api.flattr.com/js/0.6/load.js?mode=auto';
t.parentNode.insertBefore(s, t);
})();
/* ]]> */
</script>
1) What's the point of loading Flattr API in admin pages?
2) this isn't compatible with SSL / HTTPS because the src='http://...' (instead of '//...' or 'https://...').
Thank you.