Changeset 3244772
- Timestamp:
- 02/22/2025 03:58:47 AM (11 months ago)
- Location:
- pz-linkcard/trunk
- Files:
-
- 5 edited
-
js/admin-settings.js (modified) (1 diff)
-
js/mce-button.js (modified) (1 diff)
-
lib/pz-linkcard-activate.php (modified) (3 diffs)
-
pz-linkcard.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pz-linkcard/trunk/js/admin-settings.js
r3244278 r3244772 1 (function($) {1 jQuery(function($) { 2 2 // Pz-LinkCardの設定画面のときのみ動作 3 3 if ($('.pz-dashboard').is('*') ) { -
pz-linkcard/trunk/js/mce-button.js
r3244278 r3244772 1 ( function( $ ) {1 jQuery( function( $ ) { 2 2 tinymce.create( "tinymce.plugins.pz_linkcard_tinymce", { 3 3 getInfo: function() { -
pz-linkcard/trunk/lib/pz-linkcard-activate.php
r3244278 r3244772 83 83 } 84 84 } 85 85 echo '<pre>[DEBUG]1</pre>'; 86 86 // 足りない項目 87 87 foreach (Self::DEFAULTS as $key => $value ) { … … 91 91 } 92 92 93 echo '<pre>[DEBUG]2</pre>'; 93 94 // 個別に設定しなおす 94 95 if ($this->options['plugin-version'] < '2.5.6' ) { … … 160 161 return false; 161 162 } 163 echo '<pre>[DEBUG]3</pre>'; 162 164 163 165 // スタイルシート生成 164 166 $this->pz_SetStyle(); 167 echo '<pre>[DEBUG]4</pre>'; -
pz-linkcard/trunk/pz-linkcard.php
r3244278 r3244772 5 5 Plugin URI: http://popozure.info/pz-linkcard 6 6 Description: リンクをカード形式で表示します。 7 Version: 2.5.6 7 Version: 2.5.6.1 8 8 Author: Poporon 9 9 Author URI: http://popozure.info … … 482 482 // 内部リンクも外部リンクも変換する 483 483 if ($this->options['auto-atag'] ) { 484 $content = preg_replace('/(^|<br ?\/?>)(<p.*>)?<a\s.*href\s*=\s*[\'"]?((https?|file|ftp|data|ogg):\/\/[^\s<> ]+)[\'"]?[^<]*<\/a>(<\/p>)?$/im', '[pz-linkcard-auto-replace url="$3"]', $content );484 $content = preg_replace('/(^|<br ?\/?>)(<p.*>)?<a\s.*href\s*=\s*[\'"]?((https?|file|ftp|data|ogg):\/\/[^\s<>\'"]+)[\'"]?[^<]*<\/a>(<\/p>)?$/im', '[pz-linkcard-auto-replace url="$3"]', $content ); 485 485 } 486 486 if ($this->options['auto-url'] ) { -
pz-linkcard/trunk/readme.txt
r3244485 r3244772 150 150 151 151 == Changelog == 152 153 = 2.5.6.1 = 154 * [Fixed] クラシック エディターで挿入ボタンが動作しない場合があったため、スクリプトを修正しました。 155 * [Fixed] 「テキストリンク行を変換」を有効にした際、リンクカードが表示されずURLエラーの表示になってしまう不具合を修正しました。 152 156 153 157 = 2.5.6 =
Note: See TracChangeset
for help on using the changeset viewer.