Plugin Directory

Changeset 1836455


Ignore:
Timestamp:
03/08/2018 04:47:37 PM (8 years ago)
Author:
affiliatesolutions
Message:

Update 1.5.9

Location:
moreads-se/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • moreads-se/trunk/lib/Ads/html/bypass_stage_2.php

    r1580158 r1836455  
    66<script type="text/javascript">
    77    <?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'] : '/';
    1116    ?>
    1217
  • moreads-se/trunk/ma-se.php

    r1741648 r1836455  
    44Plugin URI:         https://www.affiliate-solutions.xyz/produkte/moreads-se/
    55Description:        moreAds SE is a standalone ad server used as a WordPress plugin
    6 Version:            1.5.8
     6Version:            1.5.9
    77Author:             Affiliate Solutions S.L.U
    88Author URI:         https://www.affiliate-solutions.xyz/produkte/moreads-se/
  • moreads-se/trunk/readme.txt

    r1817262 r1836455  
    6363== Changelog ==
    6464
     65= 1.5.9 =
     66* Bugfix AdBlock Bypass
     67
    6568= 1.5.8 =
    6669* Added "On Footer" Floating Ad Settings
Note: See TracChangeset for help on using the changeset viewer.