Plugin Directory

Changeset 1504405


Ignore:
Timestamp:
09/28/2016 10:40:10 AM (10 years ago)
Author:
eslamsalem
Message:

tagging version 1.3

Location:
frumentarii
Files:
6 deleted
3 edited
14 copied

Legend:

Unmodified
Added
Removed
  • frumentarii/tags/1.3/bootstrap.php

    r1502225 r1504405  
    2626
    2727function frumentarii_activation() {
    28     $tmp_rand = mt_rand() * time();
    29     $token = sha1( $tmp_rand . get_site_url() . $tmp_rand );
    30     update_option('frumentarii_token',$token);
     28    $token = get_option('frumentarii_token');
     29    if(!$token){
     30        $tmp_rand = mt_rand() * time();
     31        $token = sha1( $tmp_rand . get_site_url() . $tmp_rand );
     32        update_option('frumentarii_token',$token);
     33    }
    3134}
    3235function frumentarii_deactivation() {
  • frumentarii/tags/1.3/frumentarii.php

    r1504305 r1504405  
    55Description: Anti Malware for your website
    66Author: Shieldfy Security Team
    7 Version: 1.2
     7Version: 1.3
    88Author URI: https://shieldfy.com/
    99*/
     
    1515 *****************************************************************************/
    1616if (!defined( 'Frumentarii_VERSION' )) {
    17     define( 'Frumentarii_VERSION', '1.2' );
     17    define( 'Frumentarii_VERSION', '1.3' );
    1818}
    1919if (!defined( 'Frumentarii_URL' )) {
  • frumentarii/tags/1.3/readme.txt

    r1504305 r1504405  
    44Requires at least: 3.0.1
    55Tested up to: 4.6
    6 Stable tag: 1.2
     6Stable tag: 1.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • frumentarii/trunk/bootstrap.php

    r1502225 r1504405  
    2626
    2727function frumentarii_activation() {
    28     $tmp_rand = mt_rand() * time();
    29     $token = sha1( $tmp_rand . get_site_url() . $tmp_rand );
    30     update_option('frumentarii_token',$token);
     28    $token = get_option('frumentarii_token');
     29    if(!$token){
     30        $tmp_rand = mt_rand() * time();
     31        $token = sha1( $tmp_rand . get_site_url() . $tmp_rand );
     32        update_option('frumentarii_token',$token);
     33    }
    3134}
    3235function frumentarii_deactivation() {
  • frumentarii/trunk/frumentarii.php

    r1504305 r1504405  
    55Description: Anti Malware for your website
    66Author: Shieldfy Security Team
    7 Version: 1.2
     7Version: 1.3
    88Author URI: https://shieldfy.com/
    99*/
     
    1515 *****************************************************************************/
    1616if (!defined( 'Frumentarii_VERSION' )) {
    17     define( 'Frumentarii_VERSION', '1.2' );
     17    define( 'Frumentarii_VERSION', '1.3' );
    1818}
    1919if (!defined( 'Frumentarii_URL' )) {
  • frumentarii/trunk/readme.txt

    r1504305 r1504405  
    44Requires at least: 3.0.1
    55Tested up to: 4.6
    6 Stable tag: 1.2
     6Stable tag: 1.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.