Changeset 3155132
- Timestamp:
- 09/20/2024 10:48:54 AM (19 months ago)
- Location:
- azo-ads
- Files:
-
- 6 edited
- 1 copied
-
tags/1.5.1 (copied) (copied from azo-ads/trunk)
-
tags/1.5.1/azo-ads.php (modified) (2 diffs)
-
tags/1.5.1/includes/ajax.php (modified) (1 diff)
-
tags/1.5.1/readme.txt (modified) (2 diffs)
-
trunk/azo-ads.php (modified) (2 diffs)
-
trunk/includes/ajax.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
azo-ads/tags/1.5.1/azo-ads.php
r3155125 r3155132 13 13 * Plugin URI: https://ads.azonow.com 14 14 * Description: A powerful tool to manage your ads in WordPress easily. 15 * Version: 1.5. 015 * Version: 1.5.1 16 16 * Author: AZO Team 17 17 * Author URI: https://azonow.com … … 35 35 define( 'AZOADS_URL', 'https://azonow.com/' ); 36 36 define( 'AZOADS_NEWS_URL', AZOADS_URL ); 37 define( 'AZOADS_VERSION', '1.5. 0' );37 define( 'AZOADS_VERSION', '1.5.1' ); 38 38 39 39 // INIT plugin -
azo-ads/tags/1.5.1/includes/ajax.php
r3155125 r3155132 723 723 if ( $_wpnonce == '' || ! wp_verify_nonce( $_wpnonce, 'azoads-settings-ad' ) ) wp_send_json_error( 'Sorry, your nonce did not verify.' ); 724 724 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 726 726 727 727 $settings = $_POST['settings']; -
azo-ads/tags/1.5.1/readme.txt
r3155125 r3155132 11 11 Tested up to: 6.6 12 12 Requires PHP: 5.4 13 Stable tag: 1.5. 013 Stable tag: 1.5.1 14 14 15 15 A 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. … … 323 323 * New feature: Hide AZO Ads to specific user roles (Role-Based Access Control: RBAC). 324 324 * 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 13 13 * Plugin URI: https://ads.azonow.com 14 14 * Description: A powerful tool to manage your ads in WordPress easily. 15 * Version: 1.5. 015 * Version: 1.5.1 16 16 * Author: AZO Team 17 17 * Author URI: https://azonow.com … … 35 35 define( 'AZOADS_URL', 'https://azonow.com/' ); 36 36 define( 'AZOADS_NEWS_URL', AZOADS_URL ); 37 define( 'AZOADS_VERSION', '1.5. 0' );37 define( 'AZOADS_VERSION', '1.5.1' ); 38 38 39 39 // INIT plugin -
azo-ads/trunk/includes/ajax.php
r3155125 r3155132 723 723 if ( $_wpnonce == '' || ! wp_verify_nonce( $_wpnonce, 'azoads-settings-ad' ) ) wp_send_json_error( 'Sorry, your nonce did not verify.' ); 724 724 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 726 726 727 727 $settings = $_POST['settings']; -
azo-ads/trunk/readme.txt
r3155125 r3155132 11 11 Tested up to: 6.6 12 12 Requires PHP: 5.4 13 Stable tag: 1.5. 013 Stable tag: 1.5.1 14 14 15 15 A 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. … … 323 323 * New feature: Hide AZO Ads to specific user roles (Role-Based Access Control: RBAC). 324 324 * 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.