Plugin Directory

Changeset 3310857


Ignore:
Timestamp:
06/13/2025 06:59:09 AM (10 months ago)
Author:
falcon13
Message:

Ver 2.5.2 - Added filter helper function default. Council scoreboard changes.

Location:
kofc-state/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • kofc-state/trunk/helpers/filter_helper.php

    r3149634 r3310857  
    55 * @Author          Chris Hood (https://onthegridwebdesign.com)
    66 * @Link                http://onthegridwebdesign.com
    7  * @copyright       (c) 2018-2024, On the Grid Web Design LLC
     7 * @copyright       (c) 2018-2025, On the Grid Web Design LLC
    88 * @created         2/24/2018
    99*/
     
    144144 * @return string|null
    145145 */
    146 function otgkofcs_filter_link ($in) {
     146function otgkofcs_filter_link ($in, $default=null) {
    147147    $link = trim($in);
     148    if (empty($link)) return $default;
    148149    if (0 != strncasecmp($link, "http://", 7) && 0 != strncasecmp($link, "https://", 8))
    149150        $link = 'http://' . $link;
  • kofc-state/trunk/kofc-state.php

    r3271653 r3310857  
    55  Description: Functionality for State Councils Including Recruiting Scoreboards
    66  Author: Chris Hood, On The Grid Web Design LLC
    7   Version: 2.5.1
     7  Version: 2.5.2
    88  Author URI: https://onthegridwebdesign.com
    9   Updated: 4/12/2025 Created: 7/21/2016
     9  Updated: 6/12/2025 Created: 7/21/2016
    1010 */
    1111
  • kofc-state/trunk/readme.txt

    r3271651 r3310857  
    66Tested up to: 6.7
    77Requires PHP: 5.6
    8 Stable tag: 2.5.1
     8Stable tag: 2.5.2
    99License: GPLv3
    1010
     
    7474
    7575== Changelog ==
     762.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
    76802.5.1 (4/10/2025)
    7781- 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.