Changeset 1743657
- Timestamp:
- 10/10/2017 02:55:52 AM (8 years ago)
- Location:
- db-share-count/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (2 diffs)
-
db_share_count.php (modified) (1 diff)
-
dbsc_admin_options.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
db-share-count/trunk/changelog.txt
r1572193 r1743657 2 2 3 3 All notable changes to the project will be documented in this file. 4 5 ## [0.1.3] 6 ### Fixed 7 - Options was not displaying correct min_count 4 8 5 9 ## [0.1.2] … … 15 19 ### Added 16 20 - Initial release. 17 -
db-share-count/trunk/db_share_count.php
r1572193 r1743657 4 4 Plugin URI: https://github.com/Crasily/db_share_count 5 5 Description: Social share buttons with count 6 Version: 0.1. 26 Version: 0.1.3 7 7 Author: Nathan Webb 8 8 License: GPLv2 or later -
db-share-count/trunk/dbsc_admin_options.php
r1570844 r1743657 19 19 function dbsc_min_count_display() { 20 20 $options = get_option('dbsc_settings'); 21 $minCount = get_min_count();22 echo "<input type='number' name='dbsc_settings[ dbsc_min_count_display]' value='{$minCount}'/>";21 $minCount = dbsc_get_min_count(); 22 echo "<input type='number' name='dbsc_settings[min_count_display]' value='{$minCount}'/>"; 23 23 } 24 24 25 25 function dbsc_options_validate($input) { 26 26 $options = get_option('dbsc_settings'); 27 $options[ dbsc_min_count_display] = absint($input[dbsc_min_count_display]);27 $options[min_count_display] = absint($input[min_count_display]); 28 28 return $options; 29 29 } -
db-share-count/trunk/readme.txt
r1572197 r1743657 3 3 Tags: social share count, social share, share counter, social icons 4 4 Requires at least: 4.0 5 Tested up to: 4. 65 Tested up to: 4.8 6 6 Stable tag: trunk 7 7 License: GPLv2 or later … … 68 68 69 69 == Changelog == 70 = 0.1.3 = 71 * Fixed options was not displaying correct min_count 72 70 73 = 0.1.2 = 71 74 * Fixed readme.txt incorrect shortcode
Note: See TracChangeset
for help on using the changeset viewer.