Changeset 1836455
- Timestamp:
- 03/08/2018 04:47:37 PM (8 years ago)
- Location:
- moreads-se/trunk
- Files:
-
- 3 edited
-
lib/Ads/html/bypass_stage_2.php (modified) (1 diff)
-
ma-se.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
moreads-se/trunk/lib/Ads/html/bypass_stage_2.php
r1580158 r1836455 6 6 <script type="text/javascript"> 7 7 <?php 8 $current_url = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; 9 $is_valid = MASE_UrlSigning::verifySignedUrl($current_url, MASE::$URLSIGNING_KEY); 10 $url = $is_valid ? $_GET['i'] : '/'; 8 if ( (! empty($_SERVER['REQUEST_SCHEME']) && $_SERVER['REQUEST_SCHEME'] == 'https') || (! empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') || (! empty($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == '443') ) { 9 $server_request_scheme = 'https'; 10 } else { 11 $server_request_scheme = 'http'; 12 } 13 $current_url = $server_request_scheme . '://' . $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; 14 $is_valid = MASE_UrlSigning::verifySignedUrl($current_url, MASE::$URLSIGNING_KEY); 15 $url = $is_valid ? $_GET['i'] : '/'; 11 16 ?> 12 17 -
moreads-se/trunk/ma-se.php
r1741648 r1836455 4 4 Plugin URI: https://www.affiliate-solutions.xyz/produkte/moreads-se/ 5 5 Description: moreAds SE is a standalone ad server used as a WordPress plugin 6 Version: 1.5. 86 Version: 1.5.9 7 7 Author: Affiliate Solutions S.L.U 8 8 Author URI: https://www.affiliate-solutions.xyz/produkte/moreads-se/ -
moreads-se/trunk/readme.txt
r1817262 r1836455 63 63 == Changelog == 64 64 65 = 1.5.9 = 66 * Bugfix AdBlock Bypass 67 65 68 = 1.5.8 = 66 69 * Added "On Footer" Floating Ad Settings
Note: See TracChangeset
for help on using the changeset viewer.