Skip to content

Commit

Permalink
Reconcile oik-depends shared library
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbingwide committed Sep 18, 2022
1 parent 8b836d2 commit 0a07eff
Show file tree
Hide file tree
Showing 5 changed files with 14,926 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .gitignore
@@ -1,6 +1,5 @@
node_modules
node_modules-renamed
package-lock.json
.idea/
.~lock*
.phpunit.result.cache
.phpunit.result.cache
5 changes: 3 additions & 2 deletions libs/oik-depends.php
@@ -1,6 +1,6 @@
<?php // (C) Copyright Bobbing Wide 2012-2021
<?php // (C) Copyright Bobbing Wide 2012-2022
if ( !defined( "OIK_DEPENDS_INCLUDED" ) ) {
define( "OIK_DEPENDS_INCLUDED", "3.2.5" );
define( "OIK_DEPENDS_INCLUDED", "3.2.6" );

/**
* Dependency checking library functions
Expand Down Expand Up @@ -100,6 +100,7 @@ function oik_plugin_inactive( $plugin=null, $dependencies=null, $problem=null )
$dependencies = str_replace( ":", __(" version ", null ), $dependencies );
list( $depends ) = explode(' ', trim( $dependencies ));
$text = "<p><b>";
/* translators: %s: plugin name */
$text .= sprintf( __( 'Plugin %1$s may not be fully functional.', null ), $plug_name );
$text .= '</b>';
$text .= ' ';
Expand Down
4 changes: 2 additions & 2 deletions oik-blocks.php
Expand Up @@ -5,7 +5,7 @@
* Description: WordPress blocks, aka Gutenberg blocks, for oik shortcodes.
* Author: Herb Miller
* Author URI: https://oik-plugins.com/author/bobbingwide
* Version: 1.4.0
* Version: 1.4.1
* License: GPL3+
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
* Text Domain: oik-blocks
Expand Down Expand Up @@ -93,7 +93,7 @@ function oik_blocks_fields_results( $html, $attributes ) {
if( $html === null ) {
$html = $fields;
}

return $html;
}

Expand Down

0 comments on commit 0a07eff

Please sign in to comment.