Plugin Directory

Changeset 3155132


Ignore:
Timestamp:
09/20/2024 10:48:54 AM (19 months ago)
Author:
azonow
Message:

Release AZO Ads v1.5.1

Location:
azo-ads
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • azo-ads/tags/1.5.1/azo-ads.php

    r3155125 r3155132  
    1313 * Plugin URI:        https://ads.azonow.com
    1414 * Description:       A powerful tool to manage your ads in WordPress easily.
    15  * Version:           1.5.0
     15 * Version:           1.5.1
    1616 * Author:            AZO Team
    1717 * Author URI:        https://azonow.com
     
    3535define( 'AZOADS_URL', 'https://azonow.com/' );
    3636define( 'AZOADS_NEWS_URL', AZOADS_URL );
    37 define( 'AZOADS_VERSION', '1.5.0' );
     37define( 'AZOADS_VERSION', '1.5.1' );
    3838
    3939// INIT plugin
  • azo-ads/tags/1.5.1/includes/ajax.php

    r3155125 r3155132  
    723723    if ( $_wpnonce == '' || ! wp_verify_nonce( $_wpnonce, 'azoads-settings-ad' ) ) wp_send_json_error( 'Sorry, your nonce did not verify.' );
    724724
    725     if ( isset( $_POST['settings'] ) && ! empty( $_POST['settings'] ) && isset( $_POST['settings']['brand'] ) && $_POST['settings']['brand'] == AZOADS_NAME ) {
     725    if ( isset( $_POST['settings'] ) && ! empty( $_POST['settings'] ) ) { // for next needs to check: isset( $_POST['settings']['brand'] ) && $_POST['settings']['brand'] == AZOADS_NAME
    726726
    727727        $settings = $_POST['settings'];
  • azo-ads/tags/1.5.1/readme.txt

    r3155125 r3155132  
    1111Tested up to: 6.6
    1212Requires PHP: 5.4
    13 Stable tag: 1.5.0
     13Stable tag: 1.5.1
    1414
    1515A powerful tool to manage your ads in WordPress easily. Easy way to embed Google AdSense and other kinds of ad. Cool features and beautiful UI/UX.
     
    323323* New feature: Hide AZO Ads to specific user roles (Role-Based Access Control: RBAC).
    324324* New feature: Import and Export Settings configuration via .json file located Tools tab.
     325
     326= 1.5.1 (September 20, 2024) =
     327* Bug fixes.
  • azo-ads/trunk/azo-ads.php

    r3155125 r3155132  
    1313 * Plugin URI:        https://ads.azonow.com
    1414 * Description:       A powerful tool to manage your ads in WordPress easily.
    15  * Version:           1.5.0
     15 * Version:           1.5.1
    1616 * Author:            AZO Team
    1717 * Author URI:        https://azonow.com
     
    3535define( 'AZOADS_URL', 'https://azonow.com/' );
    3636define( 'AZOADS_NEWS_URL', AZOADS_URL );
    37 define( 'AZOADS_VERSION', '1.5.0' );
     37define( 'AZOADS_VERSION', '1.5.1' );
    3838
    3939// INIT plugin
  • azo-ads/trunk/includes/ajax.php

    r3155125 r3155132  
    723723    if ( $_wpnonce == '' || ! wp_verify_nonce( $_wpnonce, 'azoads-settings-ad' ) ) wp_send_json_error( 'Sorry, your nonce did not verify.' );
    724724
    725     if ( isset( $_POST['settings'] ) && ! empty( $_POST['settings'] ) && isset( $_POST['settings']['brand'] ) && $_POST['settings']['brand'] == AZOADS_NAME ) {
     725    if ( isset( $_POST['settings'] ) && ! empty( $_POST['settings'] ) ) { // for next needs to check: isset( $_POST['settings']['brand'] ) && $_POST['settings']['brand'] == AZOADS_NAME
    726726
    727727        $settings = $_POST['settings'];
  • azo-ads/trunk/readme.txt

    r3155125 r3155132  
    1111Tested up to: 6.6
    1212Requires PHP: 5.4
    13 Stable tag: 1.5.0
     13Stable tag: 1.5.1
    1414
    1515A powerful tool to manage your ads in WordPress easily. Easy way to embed Google AdSense and other kinds of ad. Cool features and beautiful UI/UX.
     
    323323* New feature: Hide AZO Ads to specific user roles (Role-Based Access Control: RBAC).
    324324* New feature: Import and Export Settings configuration via .json file located Tools tab.
     325
     326= 1.5.1 (September 20, 2024) =
     327* Bug fixes.
Note: See TracChangeset for help on using the changeset viewer.