Changeset 3310857
- Timestamp:
- 06/13/2025 06:59:09 AM (10 months ago)
- Location:
- kofc-state/trunk
- Files:
-
- 3 edited
-
helpers/filter_helper.php (modified) (2 diffs)
-
kofc-state.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kofc-state/trunk/helpers/filter_helper.php
r3149634 r3310857 5 5 * @Author Chris Hood (https://onthegridwebdesign.com) 6 6 * @Link http://onthegridwebdesign.com 7 * @copyright (c) 2018-202 4, On the Grid Web Design LLC7 * @copyright (c) 2018-2025, On the Grid Web Design LLC 8 8 * @created 2/24/2018 9 9 */ … … 144 144 * @return string|null 145 145 */ 146 function otgkofcs_filter_link ($in ) {146 function otgkofcs_filter_link ($in, $default=null) { 147 147 $link = trim($in); 148 if (empty($link)) return $default; 148 149 if (0 != strncasecmp($link, "http://", 7) && 0 != strncasecmp($link, "https://", 8)) 149 150 $link = 'http://' . $link; -
kofc-state/trunk/kofc-state.php
r3271653 r3310857 5 5 Description: Functionality for State Councils Including Recruiting Scoreboards 6 6 Author: Chris Hood, On The Grid Web Design LLC 7 Version: 2.5. 17 Version: 2.5.2 8 8 Author URI: https://onthegridwebdesign.com 9 Updated: 4/12/2025 Created: 7/21/20169 Updated: 6/12/2025 Created: 7/21/2016 10 10 */ 11 11 -
kofc-state/trunk/readme.txt
r3271651 r3310857 6 6 Tested up to: 6.7 7 7 Requires PHP: 5.6 8 Stable tag: 2.5. 18 Stable tag: 2.5.2 9 9 License: GPLv3 10 10 … … 74 74 75 75 == Changelog == 76 2.5.2 (6/12/2025) 77 - Council scoreboard view link fix and change percentage to no decimal places. 78 - Add default to link filter function. 79 76 80 2.5.1 (4/10/2025) 77 81 - A filter function that was being used for output filtering was removed in last updated. Replaced it with htmlentities.
Note: See TracChangeset
for help on using the changeset viewer.