Changeset 1372856
- Timestamp:
- 03/17/2016 06:37:41 AM (10 years ago)
- Location:
- bp-schedule-notifications/trunk
- Files:
-
- 2 edited
-
bp_schedule_notifications.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bp-schedule-notifications/trunk/bp_schedule_notifications.php
r1348290 r1372856 4 4 Plugin URI: http://www.aheadzen.com 5 5 Description: Buddypress Schedule Notifications as per you future prediction. 6 Version: 1.0. 46 Version: 1.0.5 7 7 Author: Ask Oracle Team 8 8 Author URI: http://ask-oracle.com/ … … 328 328 //$result = bp_core_add_notification($args['item_id'], $args['user_id'], 'futures', $args['action']); 329 329 /**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 } 331 335 332 336 } -
bp-schedule-notifications/trunk/readme.txt
r1348189 r1372856 27 27 28 28 == Changelog == 29 = 1.0.0 = 30 * Fresh Public Release. 29 31 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. 32 37 33 38 = 1.0.3 = … … 35 40 * Schedule for next 7 days in advanced. 36 41 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. 39 44 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.