Skip to content

Commit

Permalink
Reconcile bobbfunc shared library
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbingwide committed Mar 12, 2024
1 parent 3ceecab commit 3cb505f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libs/bobbfunc.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php // (C) Copyright Bobbing Wide 2009-2023
<?php // (C) Copyright Bobbing Wide 2009-2024
if ( !defined( "BOBBFUNC_INCLUDED" ) ) {
define( "BOBBFUNC_INCLUDED", "3.4.3" );
define( "BOBBFUNC_INCLUDED", "3.5.0" );

/**
* HTML output library functions
Expand Down Expand Up @@ -259,7 +259,7 @@ function retlink( $class, $url, $linktori=NULL, $alt=NULL, $id=NULL, $extra=NULL
$link = "<a" ;
$link .= kv( "class", $class );
$link .= kv( "id", $id );
$link .= kv( "href", $url );
$link .= kv( "href", esc_url( $url ) );
if ( !is_null( $alt ) ) {
if ( $alt != $linktori ) {
$link .= atitle( $alt );
Expand Down

0 comments on commit 3cb505f

Please sign in to comment.