Plugin Directory

Changeset 1372856


Ignore:
Timestamp:
03/17/2016 06:37:41 AM (10 years ago)
Author:
aheadzen
Message:

1.0.5

Location:
bp-schedule-notifications/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • bp-schedule-notifications/trunk/bp_schedule_notifications.php

    r1348290 r1372856  
    44Plugin URI: http://www.aheadzen.com
    55Description: Buddypress Schedule Notifications as per you future prediction.
    6 Version: 1.0.4
     6Version: 1.0.5
    77Author: Ask Oracle Team
    88Author URI: http://ask-oracle.com/
     
    328328        //$result = bp_core_add_notification($args['item_id'], $args['user_id'], 'futures', $args['action']);
    329329        /**Send Notification start**/
    330         $result = bp_core_add_notification($args['item_id'], $args['user_id'], 'futures', $args['action']);
     330        if(function_exists('bp_notifications_add_notification')){
     331            $result = bp_notifications_add_notification($args['item_id'], $args['user_id'], 'futures', $args['action']);
     332        }else{
     333            $result = bp_core_add_notification($args['item_id'], $args['user_id'], 'futures', $args['action']);
     334        }
    331335       
    332336    }
  • bp-schedule-notifications/trunk/readme.txt

    r1348189 r1372856  
    2727
    2828== Changelog ==
     29= 1.0.0 =
     30* Fresh Public Release.
    2931
    30 = 1.0.4 =
    31 * Transit settings start date check for future +7 days instead of today.
     32= 1.0.1 =
     33* Notification title changed.
     34
     35= 1.0.2 =
     36* Notification Not working.
    3237
    3338= 1.0.3 =
     
    3540* Schedule for next 7 days in advanced.
    3641
    37 = 1.0.2 =
    38 * Notification Not working.
     42= 1.0.4 =
     43* Transit settings start date check for future +7 days instead of today.
    3944
    40 
    41 = 1.0.1 =
    42 * Notification title changed.
    43 
    44 
    45 = 1.0.0 =
    46 * Fresh Public Release.
     45= 1.0.5 =
     46 Wordpress Version > 4.3 and BP Version > 1.9
     47* "bp_core_add_notification is depreciated" solved.
Note: See TracChangeset for help on using the changeset viewer.