Plugin Directory

Changeset 1137965


Ignore:
Timestamp:
04/18/2015 12:45:13 PM (11 years ago)
Author:
twapaw
Message:

Version 3.1.2

Location:
opes-favicon
Files:
35 added
3 edited

Legend:

Unmodified
Added
Removed
  • opes-favicon/trunk/inc/admin/controller/1-activationHook-ToLoad.php

    r1137939 r1137965  
    1818        $opes_favicon_version = get_option( 'opes_favicon_version' , false );
    1919        $curr_version = (int)( preg_replace( '/[^0-9]/' , '' , __OFWP_jvet__THIS_PLUGIN__VERSION_ ) );
    20         $current_date = DateTime::createFromFormat( 'Y-m-d H:i:s' , current_time( 'mysql' ) );
     20        $current_date = current_time( 'mysql' );//DateTime::createFromFormat( 'Y-m-d H:i:s' , current_time( 'mysql' ) );
    2121
    2222        $in_db_version = -1;
     
    2525
    2626            $in_db_version = (int)$opes_favicon_version['version'];
    27             $in_db_install_date = DateTime::createFromFormat( 'Y-m-d H:i:s' , $opes_favicon_version['install_date'] );
     27            $in_db_install_date = $opes_favicon_version['install_date'];//DateTime::createFromFormat( 'Y-m-d H:i:s' , $opes_favicon_version['install_date'] );
    2828        };
    2929
    3030        $opes_favicon_version_data = array(
    3131            'version' => $curr_version,
    32             'install_date' => $current_date->format( 'Y-m-d H:i:s' )
     32            'install_date' => $current_date//->format( 'Y-m-d H:i:s' )
    3333        );
    3434
     
    3737        } else if ( $in_db_version < $curr_version ) {
    3838            update_option( 'opes_favicon_version' , $opes_favicon_version_data );
    39         }
     39        };
    4040    }
    4141}
  • opes-favicon/trunk/opes-favicon.php

    r1137959 r1137965  
    77Plugin URI: https://wordpress.org/plugins/opes-favicon/
    88Description: This plugin allows you to add and manage a favicon on your WordPress website.
    9 Version: 3.1.1
     9Version: 3.1.2
    1010Author: Paweł Twardziak
    1111Author URI: http://it-opes.com/
     
    4545
    4646
    47 define( '__OFWP_jvet__THIS_PLUGIN__VERSION_' , '3.1.1' );
     47define( '__OFWP_jvet__THIS_PLUGIN__VERSION_' , '3.1.2' );
    4848
    4949
  • opes-favicon/trunk/readme.txt

    r1137959 r1137965  
    55Requires at least: 3.5.0
    66Tested up to: 4.1
    7 Stable tag: 3.1.1
     7Stable tag: 3.1.2
    88License: GPLv2 or later
    99
     
    2929
    3030== Changelog ==
     31
     32= 3.1.2 =
     33*Release Date - 22th March, 2015*
     34
     35* IMPROVEMENT: never hiding admin notice about regeneration after updating - last fix imporovement
    3136
    3237= 3.1.1 =
Note: See TracChangeset for help on using the changeset viewer.