You appear to be a bot. Output may be restricted
Description
Return an end tag if the class is not null
Usage
nullretetag( $tag, $class );
Parameters
- $tag
- ( mixed ) required –
- $class
- ( mixed ) optional –
Returns
voidSource
File name: oik-bwtrace/libs/bobbfunc.phpLines:
1 to 6 of 6
function nullretetag( $tag, $class=NULL ) { $ret = ''; if ( $class <> NULL ) $ret = retetag( $tag ); return( $ret ); }View on GitHub View on Trac