The Floating Social Media Plugin has been updated. Here is a change list, so you can see what\'s been changed or fixed:
';
$ret .= '';
$ret .= '
= Latest Version =
';
$ul = false;
$first = false;
foreach ( $changelog as $index => $line )
{
if ( preg_match ( '~^\s*\*\s*~', $line) )
{
if ( !$ul )
{
$ret .= '
';
$ul = true;
$first = true;
}
$line = preg_replace ( '~^\s*\*\s*~', '', $line );
if ( $first )
{
$ret .= '- Release Date:' . $line . '
';
$first = false;
}
else
{
$ret .= '- ' . $line . '
';
}
}
else
{
if ( $ul )
{
$ret .= '
';
$ul = false;
}
$ret .= '
' . $line . '
';
}
}
if ( $ul )
{
$ret .= '';
}
$ret .= '
';
}
}
echo $ret;
}
/**
* Add update messages that can be attached to the CURRENT release (not
* this one), but only for 2.8+
*/
global $wp_version;
if ( version_compare('2.8', $wp_version, '<=') )
{
global $pagenow;
if ( 'plugins.php' === $pagenow )
{
// Better update message
$file = basename( __FILE__ );
$folder = basename( dirname( __FILE__ ) );
$acx_add = "in_plugin_update_message-{$folder}/{$file}";
add_action( $acx_add, 'acurax_social_widget_icon_update', 20, 2 );
}
}
// Adding WUM Ends Here
?>