Version Description
- URLThanks @wiashia on Twitter Fixed: Fixed a bug that caused a fatal error when using a relative URL.
Download this release
Release Info
Developer | poporon |
Plugin | Pz-LinkCard |
Version | 2.4.5.3 |
Comparing to | |
See all releases |
Code changes from version 2.4.5.2 to 2.4.5.3
- pz-linkcard.php +3 -3
- readme.txt +4 -0
pz-linkcard.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Pz-LinkCard
|
4 |
Plugin URI: http://poporon.poponet.jp/pz-linkcard
|
5 |
Description: リンクをカード形式で表示します。
|
6 |
-
Version: 2.4.5.
|
7 |
Author: Poporon
|
8 |
Author URI: http://poporon.poponet.jp
|
9 |
Text Domain: pz-linkcard
|
@@ -16,7 +16,7 @@ class class_pz_linkcard {
|
|
16 |
// 設定値
|
17 |
protected $defaults =
|
18 |
array(
|
19 |
-
'plugin-version' => '2.4.5.
|
20 |
'plugin-name' => 'Pz-LinkCard',
|
21 |
'plugin-abbreviation' => 'Pz-LkC',
|
22 |
'plugin-path' => '/pz-linkcard',
|
@@ -407,7 +407,7 @@ class class_pz_linkcard {
|
|
407 |
|
408 |
// 相対URLを絶対URLに変換(ショートコードのURLで相対パス表記の場合、内部リンクと見なす)
|
409 |
if ($this->options['flg-relative-url'] && !mb_strpos($url, '://' ) ) {
|
410 |
-
$url = $this->pz_RelToURL(
|
411 |
}
|
412 |
|
413 |
// URLのサニタイズ&エンティティ化
|
3 |
Plugin Name: Pz-LinkCard
|
4 |
Plugin URI: http://poporon.poponet.jp/pz-linkcard
|
5 |
Description: リンクをカード形式で表示します。
|
6 |
+
Version: 2.4.5.3
|
7 |
Author: Poporon
|
8 |
Author URI: http://poporon.poponet.jp
|
9 |
Text Domain: pz-linkcard
|
16 |
// 設定値
|
17 |
protected $defaults =
|
18 |
array(
|
19 |
+
'plugin-version' => '2.4.5.3',
|
20 |
'plugin-name' => 'Pz-LinkCard',
|
21 |
'plugin-abbreviation' => 'Pz-LkC',
|
22 |
'plugin-path' => '/pz-linkcard',
|
407 |
|
408 |
// 相対URLを絶対URLに変換(ショートコードのURLで相対パス表記の場合、内部リンクと見なす)
|
409 |
if ($this->options['flg-relative-url'] && !mb_strpos($url, '://' ) ) {
|
410 |
+
$url = $this->pz_RelToURL(esc_url(home_url() ), $url );
|
411 |
}
|
412 |
|
413 |
// URLのサニタイズ&エンティティ化
|
readme.txt
CHANGED
@@ -151,6 +151,10 @@ Ver.2.1.2から200px四方に変更、Ver.2.4.1から自由に指定できるよ
|
|
151 |
|
152 |
== Changelog ==
|
153 |
|
|
|
|
|
|
|
|
|
154 |
= 2.4.5.2 =
|
155 |
* カード管理画面のエスケープ処理を追加。(XSS脆弱性の対応)(Thanks tkusagaya on WordPress.org)
|
156 |
Fixed: Added escaping of display items to address XSS vulnerability.
|
151 |
|
152 |
== Changelog ==
|
153 |
|
154 |
+
= 2.4.5.3 =
|
155 |
+
* 相対指定のURLを使用した場合に致命的エラーが出る不具合を修正しました。(Thanks @wiashia on Twitter)
|
156 |
+
Fixed: Fixed a bug that caused a fatal error when using a relative URL.
|
157 |
+
|
158 |
= 2.4.5.2 =
|
159 |
* カード管理画面のエスケープ処理を追加。(XSS脆弱性の対応)(Thanks tkusagaya on WordPress.org)
|
160 |
Fixed: Added escaping of display items to address XSS vulnerability.
|