Changeset 2803375
- Timestamp:
- 10/24/2022 10:51:22 AM (3 years ago)
- Location:
- wp-counter-up/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
includes/LgxMetaForm.php (modified) (16 diffs)
-
wp-counter-up.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-counter-up/trunk/README.txt
r2789729 r2803375 5 5 Requires at least: 5.5 6 6 Tested up to: 6.0 7 Stable tag: 2.0. 07 Stable tag: 2.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 130 130 == Changelog == 131 131 132 = 2.0.1 = 133 * Admin form field Validation. 134 132 135 = 2.0.0 = 133 136 * Added Shortcode Generator -
wp-counter-up/trunk/includes/LgxMetaForm.php
r2788614 r2803375 71 71 $output.= '</tr>'; 72 72 73 echo $output;73 echo force_balance_tags($output); 74 74 } 75 75 … … 169 169 $output.= '</tr>'; 170 170 171 echo $output;171 echo force_balance_tags($output); 172 172 } 173 173 … … 342 342 $output.= '</tr>'; 343 343 344 echo $output;344 echo force_balance_tags($output); 345 345 } 346 346 … … 426 426 $output.= '</tr>'; 427 427 428 echo $output;428 echo force_balance_tags($output); 429 429 } 430 430 … … 498 498 $output.= '</tr>'; 499 499 500 echo $output;500 echo force_balance_tags($output); 501 501 } 502 502 … … 550 550 $output.= '</tr>'; 551 551 552 echo $output;552 echo force_balance_tags($output); 553 553 } 554 554 … … 599 599 $output.= '</tr>'; 600 600 601 echo $output;601 echo force_balance_tags($output); 602 602 } 603 603 … … 625 625 $output.= '</tr>'; 626 626 627 echo $output;627 echo force_balance_tags($output); 628 628 } 629 629 … … 666 666 $output.= '</tr>'; 667 667 668 echo $output;668 echo force_balance_tags($output); 669 669 } 670 670 … … 703 703 $output.= '</tr>'; 704 704 705 echo $output;705 echo force_balance_tags($output); 706 706 } 707 707 … … 739 739 $output.= '</tr>'; 740 740 741 echo $output;741 echo force_balance_tags($output); 742 742 } 743 743 … … 775 775 $output.= '</tr>'; 776 776 777 echo $output;777 echo force_balance_tags($output); 778 778 } 779 779 … … 816 816 $output.= '</tr>'; 817 817 818 echo $output;818 echo force_balance_tags($output); 819 819 } 820 820 … … 874 874 $output.= '</tr>'; 875 875 876 echo $output;876 echo force_balance_tags($output); 877 877 } 878 878 … … 913 913 $output.= '</tr>'; 914 914 915 echo $output;915 echo force_balance_tags($output); 916 916 } 917 917 … … 956 956 $output.= '</tr>'; 957 957 958 echo $output;958 echo force_balance_tags($output); 959 959 960 960 } -
wp-counter-up/trunk/wp-counter-up.php
r2788614 r2803375 11 11 * Plugin URI: http://logichunt.com/product/wordpress-counter-up 12 12 * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area. 13 * Version: 2.0. 013 * Version: 2.0.1 14 14 * Author: LogicHunt, Vaskar Jewel 15 15 * Author URI: http://logichunt.com … … 33 33 34 34 //plugin definition specific constants 35 defined( 'LGX_WCU_PLUGIN_VERSION' ) or define( 'LGX_WCU_PLUGIN_VERSION', '2.0. 0' );35 defined( 'LGX_WCU_PLUGIN_VERSION' ) or define( 'LGX_WCU_PLUGIN_VERSION', '2.0.1' ); 36 36 defined( 'LGX_WCU_WP_PLUGIN' ) or define( 'LGX_WCU_WP_PLUGIN', 'wp-counter-up' ); 37 37 defined( 'LGX_WCU_PLUGIN_BASE' ) or define( 'LGX_WCU_PLUGIN_BASE', plugin_basename( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.