Changeset 3115174
- Timestamp:
- 07/09/2024 08:46:13 PM (20 months ago)
- Location:
- tida-quotes
- Files:
-
- 14 added
- 3 edited
-
tags/1.0 (added)
-
tags/1.0/assets (added)
-
tags/1.0/assets/css (added)
-
tags/1.0/assets/css/tida-quotes-admin-style.css (added)
-
tags/1.0/assets/js (added)
-
tags/1.0/assets/js/tida-quotes-admin-script.js (added)
-
tags/1.0/data (added)
-
tags/1.0/data/elders-sentences.txt (added)
-
tags/1.0/inc (added)
-
tags/1.0/inc/class-quote-import.php (added)
-
tags/1.0/inc/class-quote-meta.php (added)
-
tags/1.0/inc/class-quote-post-type.php (added)
-
tags/1.0/readme.txt (added)
-
tags/1.0/tida-quotes.php (added)
-
trunk/inc/class-quote-meta.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/tida-quotes.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tida-quotes/trunk/inc/class-quote-meta.php
r3113830 r3115174 6 6 * @since 1.0 7 7 * @autor Rasool Vahdati 8 * @modified 202 3/07/29 17:09:228 * @modified 2024/07/10 00:14:06 9 9 */ 10 10 … … 109 109 { 110 110 // Check if our nonce is set and validate it. 111 if( !isset( $_POST['enable_field_meta_nonce'] ) && !wp_verify_nonce( sanitize_text_field( $_POST['enable_field_meta_nonce'] ), 'enable_field_meta_nonce') )111 if( !isset( $_POST['enable_field_meta_nonce'] ) || ( isset( $_POST['enable_field_meta_nonce'] ) && !wp_verify_nonce( sanitize_text_field( $_POST['enable_field_meta_nonce'] ), 'enable_field_meta_nonce' ) ) ) 112 112 { 113 113 return; -
tida-quotes/trunk/readme.txt
r3113830 r3115174 4 4 Requires at least: 5.0 5 5 Tested up to: 6.6 6 Stable tag: 1.0 6 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 34 34 == Changelog == 35 35 36 = 1.0.1 = 37 * Bugs fixes and improvements 38 36 39 = 1.0 = 37 40 * launch first version -
tida-quotes/trunk/tida-quotes.php
r3113830 r3115174 3 3 Plugin Name: Tida Quotes 4 4 Description: This plugin is showing custom user quotes in WordPress Dashboard 5 Version: 1.0 5 Version: 1.0.1 6 6 Author: Tida Web 7 7 Author URI: https://tidaweb.com
Note: See TracChangeset
for help on using the changeset viewer.