[Plugin: QR Code Tag] use protocol-sensitive urls for assets
-
hi,
this is just a small patch that will make qr-code-tag use protocol-sensitive urls for its assets (js, qr-code-image-files, css, etc).
this way the plugin won’t produce any browser errors by requesting unsafe resources from ssl-enabled urls.
heres the diff:
diff --git a/lib/qrct/QrctWp.php b/lib/qrct/QrctWp.php index cc7fdf3..c266cd2 100644 --- a/lib/qrct/QrctWp.php +++ b/lib/qrct/QrctWp.php @@ -71,7 +71,7 @@ class QrctWp // blame php. not wp. $this->pluginBase = basename($baseFile,'.'.pathinfo($baseFile, PATHINFO_EXTENSION)). "/".basename($baseFile); - $this->pluginUrl = WP_PLUGIN_URL.'/'.dirname($this->pluginBase).'/'; + $this->pluginUrl = plugins_url("/", $baseFile); // load text translation load_plugin_textdomain($this->pluginDomain, false, './'.dirname($this->pluginBase).'/lang'); @@ -549,4 +549,4 @@ class QrctWp require_once(dirname(__FILE__).'/QrctWp-admin.inc.php'); } -} \ No newline at end of file +}
- The topic ‘[Plugin: QR Code Tag] use protocol-sensitive urls for assets’ is closed to new replies.