Plugin Directory

Changeset 3147773


Ignore:
Timestamp:
09/06/2024 08:28:47 PM (19 months ago)
Author:
Goback2
Message:

New ver 0.7.2

Location:
logo-manager-for-enamad
Files:
8 added
4 edited

Legend:

Unmodified
Added
Removed
  • logo-manager-for-enamad/trunk/fns.php

    r3098354 r3147773  
    240240    </head>
    241241    <body style="text-align: center;">
     242    <h4>برای نمایش اطلاعات ای نماد بر روی تصویر زیر کلیک کنید:</h4>
    242243    <?php
    243244    $print_output = true;
  • logo-manager-for-enamad/trunk/index.php

    r3098354 r3147773  
    66 *Author URI: http://wp-master.ir
    77 *Description:  جهت قراردادن خودکار لوگوی نماد الکترونیکی( اینماد ) در سایت| قابلیت کدکوتاه و ابزارک برای ای نماد | شامد | نماد های دیگر
    8  *Version: 0.7.1
     8 *Version: 0.7.2
    99 */
    1010
  • logo-manager-for-enamad/trunk/readme.txt

    r3117716 r3147773  
    44Tags: enamad , shamed , enamad logo, shamed logo, WordPress enamad plugin, WordPress enamad , WordPress shamed plugin, WordPress shamed , Iran  , پلاگین اینماد وردپرس , پلاگین شامد وردپرس , شامد,اینماد,نماد
    55Requires at least: 3.0
    6 Tested up to: 6.5.5
     6Tested up to: 6.6.1
    77Stable tag: trunk
    88License: GPLv2 or later
     
    2121
    2222== Changelog ==
     23== 0.7.2 ==
     24* xss in admin widget area - fixed
    2325== 0.7.1 ==
    2426* wp-nonce implemented
  • logo-manager-for-enamad/trunk/widgets.php

    r3098354 r3147773  
    1818        ?>
    1919        <p>
    20             عنوان ابزارک ::: <input type="text" name="<?php echo $this->get_field_name('title'); ?>"
    21                                     id="<?php echo $this->get_field_id('title'); ?>" value="<?php echo $title; ?>">
     20            عنوان ابزارک ::: <input type="text" name="<?php echo esc_html($this->get_field_name('title')); ?>"
     21                                    id="<?php echo esc_html($this->get_field_id('title')); ?>"
     22                                    value="<?php echo esc_attr($title); ?>">
    2223        </p>
    2324        <?php
     
    2728    {
    2829        $instance = $old_instance;
    29         $instance['title'] = $new_instance['title'];
     30        $instance['title'] = sanitize_text_field($new_instance['title']);
    3031        return $instance;
    3132    }
     
    7778        ?>
    7879        <p>
    79             عنوان ابزارک ::: <input type="text" name="<?php echo $this->get_field_name('title'); ?>"
    80                                     id="<?php echo $this->get_field_id('title'); ?>" value="<?php echo $title; ?>">
     80            عنوان ابزارک ::: <input type="text" name="<?php echo esc_html($this->get_field_name('title')); ?>"
     81                                    id="<?php echo esc_html($this->get_field_id('title')); ?>"
     82                                    value="<?php echo esc_attr($title); ?>">
    8183        </p>
    8284        <?php
     
    8688    {
    8789        $instance = $old_instance;
    88         $instance['title'] = $new_instance['title'];
     90        $instance['title'] = sanitize_text_field($new_instance['title']);
     91
    8992        return $instance;
    9093    }
     
    136139        ?>
    137140        <p>
    138             عنوان ابزارک ::: <input type="text" name="<?php echo $this->get_field_name('title'); ?>"
    139                                     id="<?php echo $this->get_field_id('title'); ?>" value="<?php echo $title; ?>">
     141            عنوان ابزارک ::: <input type="text" name="<?php echo esc_html($this->get_field_name('title')); ?>"
     142                                    id="<?php echo esc_html($this->get_field_id('title')); ?>"
     143                                    value="<?php echo esc_attr($title); ?>">
    140144        </p>
    141145        <?php
     
    145149    {
    146150        $instance = $old_instance;
    147         $instance['title'] = $new_instance['title'];
     151        $instance['title'] = sanitize_text_field($new_instance['title']);
    148152        return $instance;
    149153    }
Note: See TracChangeset for help on using the changeset viewer.