Plugin Directory

Changeset 1111193


Ignore:
Timestamp:
03/12/2015 03:36:02 PM (11 years ago)
Author:
AdEntify
Message:

several fixes

Location:
adentify/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • adentify/trunk/adentify.php

    r1111177 r1111193  
    44 * Plugin URI: http://wordpress.adentify.com
    55 * Description: A brief description of the Plugin.
    6  * Version: 1.0.8
     6 * Version: 1.0.9
    77 * Author: ValYouAd
    88 * Author URI: http://www.valyouad.com
     
    5050define( 'ADENTIFY_API_REFRESH_TOKEN', 'api_refresh_token');
    5151define( 'ADENTIFY_API_EXPIRES_TIMESTAMP', 'api_expires_timestamp');
    52 define( 'PLUGIN_VERSION', '1.0.8');
     52define( 'PLUGIN_VERSION', '1.0.9');
    5353define( 'ADENTIFY_SQL_TABLE_PHOTOS', 'adentify_photos');
    5454
     
    440440}
    441441
    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
     443add_action( 'wp_ajax_ad_upload', 'ad_upload' );
     444add_action( 'wp_ajax_ad_tag', 'ad_tag' );
     445add_action( 'wp_ajax_ad_get_photo', 'ad_get_photo' );
     446add_action( 'wp_ajax_ad_remove_tag', 'ad_remove_tag' );
     447add_action( 'wp_ajax_ad_delete_photo', 'ad_delete_photo' );
     448add_action( 'wp_ajax_ad_analytics', 'ad_analytics');
     449add_action( 'wp_ajax_nopriv_ad_analytics', 'ad_analytics');
  • adentify/trunk/readme.txt

    r1111177 r1111193  
    55Requires at least: 3.0.1
    66Tested up to: 4.1
    7 Stable tag: 1.0.8
     7Stable tag: 1.0.9
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7575= 1.0.8 =
    7676* Fix analytics when users are logged
     77= 1.0.9 =
     78* Several fixes
Note: See TracChangeset for help on using the changeset viewer.