Changeset 1111193
- Timestamp:
- 03/12/2015 03:36:02 PM (11 years ago)
- Location:
- adentify/trunk
- Files:
-
- 2 edited
-
adentify.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
adentify/trunk/adentify.php
r1111177 r1111193 4 4 * Plugin URI: http://wordpress.adentify.com 5 5 * Description: A brief description of the Plugin. 6 * Version: 1.0. 86 * Version: 1.0.9 7 7 * Author: ValYouAd 8 8 * Author URI: http://www.valyouad.com … … 50 50 define( 'ADENTIFY_API_REFRESH_TOKEN', 'api_refresh_token'); 51 51 define( 'ADENTIFY_API_EXPIRES_TIMESTAMP', 'api_expires_timestamp'); 52 define( 'PLUGIN_VERSION', '1.0. 8');52 define( 'PLUGIN_VERSION', '1.0.9'); 53 53 define( 'ADENTIFY_SQL_TABLE_PHOTOS', 'adentify_photos'); 54 54 … … 440 440 } 441 441 442 if ( is_admin() ) { 443 add_action( 'wp_ajax_ad_upload', 'ad_upload' ); 444 add_action( 'wp_ajax_ad_tag', 'ad_tag' ); 445 add_action( 'wp_ajax_ad_get_photo', 'ad_get_photo' ); 446 add_action( 'wp_ajax_ad_remove_tag', 'ad_remove_tag' ); 447 add_action( 'wp_ajax_ad_delete_photo', 'ad_delete_photo' ); 448 add_action( 'wp_ajax_ad_analytics', 'ad_analytics'); 449 } else { 450 add_action( 'wp_ajax_nopriv_ad_analytics', 'ad_analytics'); 451 } 442 443 add_action( 'wp_ajax_ad_upload', 'ad_upload' ); 444 add_action( 'wp_ajax_ad_tag', 'ad_tag' ); 445 add_action( 'wp_ajax_ad_get_photo', 'ad_get_photo' ); 446 add_action( 'wp_ajax_ad_remove_tag', 'ad_remove_tag' ); 447 add_action( 'wp_ajax_ad_delete_photo', 'ad_delete_photo' ); 448 add_action( 'wp_ajax_ad_analytics', 'ad_analytics'); 449 add_action( 'wp_ajax_nopriv_ad_analytics', 'ad_analytics'); -
adentify/trunk/readme.txt
r1111177 r1111193 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.1 7 Stable tag: 1.0. 87 Stable tag: 1.0.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 75 75 = 1.0.8 = 76 76 * Fix analytics when users are logged 77 = 1.0.9 = 78 * Several fixes
Note: See TracChangeset
for help on using the changeset viewer.