Changeset 3147773
- Timestamp:
- 09/06/2024 08:28:47 PM (19 months ago)
- Location:
- logo-manager-for-enamad
- Files:
-
- 8 added
- 4 edited
-
tags/0.7.2 (added)
-
tags/0.7.2/fns.php (added)
-
tags/0.7.2/index.html (added)
-
tags/0.7.2/index.php (added)
-
tags/0.7.2/logo.png (added)
-
tags/0.7.2/readme.txt (added)
-
tags/0.7.2/simple-class-options.php (added)
-
tags/0.7.2/widgets.php (added)
-
trunk/fns.php (modified) (1 diff)
-
trunk/index.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/widgets.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
logo-manager-for-enamad/trunk/fns.php
r3098354 r3147773 240 240 </head> 241 241 <body style="text-align: center;"> 242 <h4>برای نمایش اطلاعات ای نماد بر روی تصویر زیر کلیک کنید:</h4> 242 243 <?php 243 244 $print_output = true; -
logo-manager-for-enamad/trunk/index.php
r3098354 r3147773 6 6 *Author URI: http://wp-master.ir 7 7 *Description: جهت قراردادن خودکار لوگوی نماد الکترونیکی( اینماد ) در سایت| قابلیت کدکوتاه و ابزارک برای ای نماد | شامد | نماد های دیگر 8 *Version: 0.7. 18 *Version: 0.7.2 9 9 */ 10 10 -
logo-manager-for-enamad/trunk/readme.txt
r3117716 r3147773 4 4 Tags: enamad , shamed , enamad logo, shamed logo, WordPress enamad plugin, WordPress enamad , WordPress shamed plugin, WordPress shamed , Iran , پلاگین اینماد وردپرس , پلاگین شامد وردپرس , شامد,اینماد,نماد 5 5 Requires at least: 3.0 6 Tested up to: 6. 5.56 Tested up to: 6.6.1 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 21 21 22 22 == Changelog == 23 == 0.7.2 == 24 * xss in admin widget area - fixed 23 25 == 0.7.1 == 24 26 * wp-nonce implemented -
logo-manager-for-enamad/trunk/widgets.php
r3098354 r3147773 18 18 ?> 19 19 <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); ?>"> 22 23 </p> 23 24 <?php … … 27 28 { 28 29 $instance = $old_instance; 29 $instance['title'] = $new_instance['title'];30 $instance['title'] = sanitize_text_field($new_instance['title']); 30 31 return $instance; 31 32 } … … 77 78 ?> 78 79 <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); ?>"> 81 83 </p> 82 84 <?php … … 86 88 { 87 89 $instance = $old_instance; 88 $instance['title'] = $new_instance['title']; 90 $instance['title'] = sanitize_text_field($new_instance['title']); 91 89 92 return $instance; 90 93 } … … 136 139 ?> 137 140 <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); ?>"> 140 144 </p> 141 145 <?php … … 145 149 { 146 150 $instance = $old_instance; 147 $instance['title'] = $new_instance['title'];151 $instance['title'] = sanitize_text_field($new_instance['title']); 148 152 return $instance; 149 153 }
Note: See TracChangeset
for help on using the changeset viewer.