Plugin Directory

Changeset 3112773

Timestamp:
07/04/2024 08:49:01 PM (5 weeks ago)
Author:
bobbingwide
Message:

oik-bwtrace v3.4.7 - reconcile libs/bobbfunc.php with security fix for oik

Location:
oik-bwtrace/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • oik-bwtrace/trunk/README.md

    r3049883 r3112773  
    55* Tags: debug, trace, backtrace, ad hoc tracing
    66* Requires at least: 5.0
    7 * Tested up to: 6.5-RC1
     7* Tested up to: 6.
    88* Gutenberg compatible: Yes
    99* Requires PHP: 5.6
    10 * Stable tag: 3.4.6
     10* Stable tag: 3.4.
    1111* License: GPLv2 or later
    1212* License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    137137
    138138## Upgrade Notice
    139 # 3.4.6
     139# 3.4.
    140140Reconciles the bobbfunc shared library which was changed for a security fix to the oik plugin.
    141141
    142142## Changelog
    143 # 3.4.6
     143# 3.4.
    144144* Changed: Reconcile bobbfunc shared library.
    145 * Tested: With WordPress 6.4.3 and WordPress Multisite
    146 * Tested: With WordPress 6.5-RC1 and WordPress Multisite
     145* Tested: With WordPress 6.6-RC2 and WordPress Multisite
    147146* Tested: With PHPUnit 9.6
    148147* Tested: With PHP 8.3
  • oik-bwtrace/trunk/changelog.txt

    r3049870 r3112773  
    3232
    3333== Upgrade Notice ==
     34
     35
     36
    3437= 3.4.5 =
    3538Update for support for PHP 8.3
     
    201204
    202205== Changelog ==
     206
     207
     208
     209
     210
     211
     212
    203213= 3.4.5 =
    204214* Changed: Support PHP 8.3 #116
  • oik-bwtrace/trunk/libs/bobbfunc.php

    r3049870 r3112773  
    11<?php // (C) Copyright Bobbing Wide 2009-2024
    22if ( !defined( "BOBBFUNC_INCLUDED" ) ) {
    3 define( "BOBBFUNC_INCLUDED", "3.5.0" );
     3define( "BOBBFUNC_INCLUDED", "3..0" );
    44
    55/**
     
    165165 *
    166166 * If the value is not null returns the keyword value pair in format ' $keyword="$value"'
    167  * 
     167 *
     168 * Note. Neither the $value nor $keyword is escaped in this function.
     169 * For improved security you may need to call an esc_* function on these parameters if they can be supplied by the end user.
    168170 *
    169171 * @param string $keyword - the keyword name e.g. class
     
    173175function kv( $keyword, $value=null ) {
    174176  if ( $value != null ) {
    175     $kv = ' '.$keyword . '="' . $value .'"';
     177    $kv = ' '.$keyword . '="' . $value .'"';
    176178  } else {
    177179    $kv = '';
     
    257259    $linktori = $url;
    258260    }
     261
    259262  $link = "<a" ;
    260   $link .= kv( "class", $class );
    261   $link .= kv( "id", $id );
     263  $link .= kv( "class",
     264  $link .= kv( "id",
    262265  $link .= kv( "href", esc_url( $url ) );
    263266  if ( !is_null( $alt ) ) {
  • oik-bwtrace/trunk/oik-bwtrace.php

    r3049870 r3112773  
    44Plugin URI: https://www.oik-plugins.com/oik-plugins/oik-bwtrace
    55Description: Debug trace for WordPress, including action and filter tracing
    6 Version: 3.4.6
     6Version: 3.4.
    77Author: bobbingwide
    88Author URI: https://www.bobbingwide.com/about-bobbing-wide
  • oik-bwtrace/trunk/readme.txt

    r3049883 r3112773  
    44Tags: debug, trace, backtrace, ad hoc tracing
    55Requires at least: 5.0
    6 Tested up to: 6.5-RC1
     6Tested up to: 6.
    77Gutenberg compatible: Yes
    88Requires PHP: 5.6
    9 Stable tag: 3.4.6
     9Stable tag: 3.4.
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    136136 
    137137== Upgrade Notice ==
    138 = 3.4.6 =
     138= 3.4. =
    139139Reconciles the bobbfunc shared library which was changed for a security fix to the oik plugin.
    140140
    141141== Changelog ==
    142 = 3.4.6 =
     142= 3.4. =
    143143* Changed: Reconcile bobbfunc shared library.
    144 * Tested: With WordPress 6.4.3 and WordPress Multisite
    145 * Tested: With WordPress 6.5-RC1 and WordPress Multisite
     144* Tested: With WordPress 6.6-RC2 and WordPress Multisite
    146145* Tested: With PHPUnit 9.6
    147146* Tested: With PHP 8.3
Note: See TracChangeset for help on using the changeset viewer.