Pz-LinkCard - Version 2.1.6.1

Version Description

Download this release

Release Info

Developer poporon
Plugin Icon 128x128 Pz-LinkCard
Version 2.1.6.1
Comparing to
See all releases

Code changes from version 2.1.6 to 2.1.6.1

Files changed (3) hide show
  1. js/mce-pz-lkc.js +2 -2
  2. pz-linkcard.php +4 -2
  3. readme.txt +4 -0
js/mce-pz-lkc.js CHANGED
@@ -2,12 +2,12 @@
2
  tinymce.create('tinymce.plugins.pzlinkcard', {
3
  init: function(ed, url){
4
  ed.addButton('pz_linkcard',{
5
- title: 'リンクカード作成',
6
  image: url + '/button.png',
7
  cmd: 'insert_pz_linkcard'
8
  });
9
  ed.addCommand('insert_pz_linkcard', function() {
10
- var insert_tag = window.prompt('リンクカードを作成するURLを入力してください', 'http://');
11
  if (insert_tag !== null) {
12
  ed.execCommand('mceInsertContent', 0, '[blogcard url="' + insert_tag + '"]');
13
  }
2
  tinymce.create('tinymce.plugins.pzlinkcard', {
3
  init: function(ed, url){
4
  ed.addButton('pz_linkcard',{
5
+ title: 'Insert Pz-LinkCard',
6
  image: url + '/button.png',
7
  cmd: 'insert_pz_linkcard'
8
  });
9
  ed.addCommand('insert_pz_linkcard', function() {
10
+ var insert_tag = window.prompt('Input URL', 'http://');
11
  if (insert_tag !== null) {
12
  ed.execCommand('mceInsertContent', 0, '[blogcard url="' + insert_tag + '"]');
13
  }
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.1.6
7
  Author: poporon
8
  Author URI: http://poporon.poponet.jp
9
  License: GPLv2 or later
@@ -161,7 +161,7 @@ class Pz_LinkCard {
161
  'invalid-time' => null,
162
  'plugin-link' => null,
163
  'plugin-name' => 'Pz-LinkCard',
164
- 'plugin-version' => '2.1.6',
165
  'plugin-url' => 'https://popozure.info/pz-linkcard',
166
  'pz-hbc-options' => null,
167
  'debug-time' => null
@@ -771,6 +771,8 @@ class Pz_LinkCard {
771
  // サイト情報
772
  if ($info) {
773
  $added_info = '<span class="lkc-added">'.$info.'</span>';
 
 
774
  }
775
  $domain_info = '<div class="lkc-info">'.$a_op.'<span class="lkc-domain"'.$site_title.'>'.$favicon.'&nbsp;'.$site_name.'</span>'.$added_info.$a_cl.$sns_info.$url2.'</div>';
776
 
3
  Plugin Name: Pz-LinkCard
4
  Plugin URI: http://poporon.poponet.jp/pz-linkcard
5
  Description: リンクをカード形式で表示します。
6
+ Version: 2.1.6.1
7
  Author: poporon
8
  Author URI: http://poporon.poponet.jp
9
  License: GPLv2 or later
161
  'invalid-time' => null,
162
  'plugin-link' => null,
163
  'plugin-name' => 'Pz-LinkCard',
164
+ 'plugin-version' => '2.1.6.1',
165
  'plugin-url' => 'https://popozure.info/pz-linkcard',
166
  'pz-hbc-options' => null,
167
  'debug-time' => null
771
  // サイト情報
772
  if ($info) {
773
  $added_info = '<span class="lkc-added">'.$info.'</span>';
774
+ } else {
775
+ $added_info = '';
776
  }
777
  $domain_info = '<div class="lkc-info">'.$a_op.'<span class="lkc-domain"'.$site_title.'>'.$favicon.'&nbsp;'.$site_name.'</span>'.$added_info.$a_cl.$sns_info.$url2.'</div>';
778
 
readme.txt CHANGED
@@ -163,6 +163,10 @@ A7.
163
  5. "Write shortcode and url"
164
 
165
  == Changelog ==
 
 
 
 
166
  Ver2.1.6
167
  * 設定画面にTwitterアカウントを表示しました。
168
  Added: Added 'When in trouble'.
163
  5. "Write shortcode and url"
164
 
165
  == Changelog ==
166
+ Ver2.1.6.1
167
+ * サイト情報を表示しないとき、ワーニングが出ていたのを修正しました。
168
+ Fixed: Fixed a bug.
169
+
170
  Ver2.1.6
171
  * 設定画面にTwitterアカウントを表示しました。
172
  Added: Added 'When in trouble'.