Plugin Directory

Changeset 2609006


Ignore:
Timestamp:
10/04/2021 05:07:48 PM (4 years ago)
Author:
AlexKar
Message:

Закрыта возможность вставки IFRAME

Location:
ark-wysiwyg-comment-editor/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ark-wysiwyg-comment-editor/trunk/ark-commenteditor.php

    r2558007 r2609006  
    55Plugin URI: https://obg.kz/plagin-kommentariev-dlya-wordpress.html
    66Description: Visual CommentEditor TinyMce Advanced
    7 Version: 2.15.4
     7Version: 2.15.5
    88Author URI: https://obg.kz
    99Text Domain: arkcommenteditor
     
    6363'btn_image' => '0',
    6464'btn_blockquote' => '1',
    65 'btn_code' => '0',
    6665'btn_bullist' => '0',
    6766'btn_numlist' => '0',
     
    139138'btn_image' => sanitize_text_field($_POST['btn_image']),
    140139'btn_blockquote' => sanitize_text_field($_POST['btn_blockquote']),
    141 'btn_code' => '0',
    142140'btn_bullist' => sanitize_text_field($_POST['btn_bullist']),
    143141'btn_numlist' => sanitize_text_field($_POST['btn_numlist']),
     
    274272</td>
    275273<td>
    276 <img src="<?php echo esc_url(plugins_url( '/img/code.png', __FILE__ )); ?>" title="<?php esc_html_e('Code','arkcommenteditor'); ?>" valign="top">  <input type="checkbox" name="btn_code" value="1" <?php if ((int)($result['btn_code']) == 1) { echo "checked"; } ?>/> &nbsp;&nbsp;
    277 </td>
    278 <td>
    279274<img src="<?php echo esc_url(plugins_url( '/img/bullist.png', __FILE__ )); ?>" title="<?php esc_html_e('Bullist','arkcommenteditor'); ?>" valign="top">  <input type="checkbox" name="btn_bullist" value="1" <?php if ((int)($result['btn_bullist']) == 1) { echo "checked"; } ?>/> &nbsp;&nbsp;
    280275</td>
  • ark-wysiwyg-comment-editor/trunk/ckeditor_set.php

    r2558007 r2609006  
    8787    $bar6 = '';
    8888    if ($result['btn_blockquote'] == 1) { $bar6 = $bar6 . '"Blockquote","-",'; $kvobtn++; }
    89     if ($result['btn_code'] == 1) { $bar6 = $bar6 . '"Source"'; $kvobtn++; }
    9089    if ($bar6!='') { $bar6 = '{name: "bar6", items: ['.$bar6 .  ' ] } ,'; }
    9190    // Вторая панель (это чисто эмпирически - всё может быть в одну панель)
  • ark-wysiwyg-comment-editor/trunk/readme.txt

    r2571052 r2609006  
    66Requires PHP:      5.6
    77Tested up to: 5.8
    8 Stable tag: 2.15.4
     8Stable tag: 2.15.5
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     
    6969== Changelog ==
    7070
     71= 2.15.5 =
     72* Закрыта возможность вставки IFRAME
     73
    7174= 2.15.4 =
    7275* Оптимизация защиты плагина
     
    200203
    201204== Upgrade Notice ==
     205
     206= 2.15.5 =
     207* Закрыта возможность вставки IFRAME
    202208
    203209= 2.15.4 =
  • ark-wysiwyg-comment-editor/trunk/tinymce_set.php

    r2554992 r2609006  
    2929    $bar6 = '';
    3030    if ($result['btn_blockquote'] == 1) { $bar6 = $bar6 . ' blockquote'; $kvobtn++; }
    31     //if ($result['btn_code'] == 1) { $bar6 = $bar6 . ' code'; $kvobtn++; $wceplugins = $wceplugins . ', code'; }
    3231    if ($bar6!='","' && $bar6!='') { $bar6 = $bar6 .  ' | '; }
    3332    // Вторая панель (это чисто эмпирически - всё может быть в одну панель)
Note: See TracChangeset for help on using the changeset viewer.