Changeset 1504405
- Timestamp:
- 09/28/2016 10:40:10 AM (10 years ago)
- Location:
- frumentarii
- Files:
-
- 6 deleted
- 3 edited
- 14 copied
-
tags/1.3 (copied) (copied from frumentarii/trunk)
-
tags/1.3/app (copied) (copied from frumentarii/trunk/app)
-
tags/1.3/app/controllers/scanner_controller.php (copied) (copied from frumentarii/trunk/app/controllers/scanner_controller.php)
-
tags/1.3/app/views/home/index.php (copied) (copied from frumentarii/trunk/app/views/home/index.php)
-
tags/1.3/app/views/scanner/new.php (copied) (copied from frumentarii/trunk/app/views/scanner/new.php)
-
tags/1.3/assets (copied) (copied from frumentarii/trunk/assets)
-
tags/1.3/banner.png (copied) (copied from frumentarii/trunk/banner.png)
-
tags/1.3/bootstrap.php (copied) (copied from frumentarii/trunk/bootstrap.php) (1 diff)
-
tags/1.3/data (copied) (copied from frumentarii/trunk/data)
-
tags/1.3/data/576bb62857ec3.json (deleted)
-
tags/1.3/data/576e7531b92e0.json (deleted)
-
tags/1.3/data/576faad8585fa.json (deleted)
-
tags/1.3/data/576faba398956.json (deleted)
-
tags/1.3/data/57dd234182ffc.json (deleted)
-
tags/1.3/data/57dd3c4a5b3b8.json (deleted)
-
tags/1.3/frumentarii.php (copied) (copied from frumentarii/trunk/frumentarii.php) (2 diffs)
-
tags/1.3/icon.png (copied) (copied from frumentarii/trunk/icon.png)
-
tags/1.3/libs (copied) (copied from frumentarii/trunk/libs)
-
tags/1.3/logo.png (copied) (copied from frumentarii/trunk/logo.png)
-
tags/1.3/readme.txt (copied) (copied from frumentarii/trunk/readme.txt) (1 diff)
-
trunk/bootstrap.php (modified) (1 diff)
-
trunk/frumentarii.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
frumentarii/tags/1.3/bootstrap.php
r1502225 r1504405 26 26 27 27 function 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 } 31 34 } 32 35 function frumentarii_deactivation() { -
frumentarii/tags/1.3/frumentarii.php
r1504305 r1504405 5 5 Description: Anti Malware for your website 6 6 Author: Shieldfy Security Team 7 Version: 1. 27 Version: 1.3 8 8 Author URI: https://shieldfy.com/ 9 9 */ … … 15 15 *****************************************************************************/ 16 16 if (!defined( 'Frumentarii_VERSION' )) { 17 define( 'Frumentarii_VERSION', '1. 2' );17 define( 'Frumentarii_VERSION', '1.3' ); 18 18 } 19 19 if (!defined( 'Frumentarii_URL' )) { -
frumentarii/tags/1.3/readme.txt
r1504305 r1504405 4 4 Requires at least: 3.0.1 5 5 Tested up to: 4.6 6 Stable tag: 1. 26 Stable tag: 1.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
frumentarii/trunk/bootstrap.php
r1502225 r1504405 26 26 27 27 function 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 } 31 34 } 32 35 function frumentarii_deactivation() { -
frumentarii/trunk/frumentarii.php
r1504305 r1504405 5 5 Description: Anti Malware for your website 6 6 Author: Shieldfy Security Team 7 Version: 1. 27 Version: 1.3 8 8 Author URI: https://shieldfy.com/ 9 9 */ … … 15 15 *****************************************************************************/ 16 16 if (!defined( 'Frumentarii_VERSION' )) { 17 define( 'Frumentarii_VERSION', '1. 2' );17 define( 'Frumentarii_VERSION', '1.3' ); 18 18 } 19 19 if (!defined( 'Frumentarii_URL' )) { -
frumentarii/trunk/readme.txt
r1504305 r1504405 4 4 Requires at least: 3.0.1 5 5 Tested up to: 4.6 6 Stable tag: 1. 26 Stable tag: 1.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.