Changeset 3520:0e77d6be5ee5
- Timestamp:
- 01/20/17 14:01:01 (9 years ago)
- Branch:
- 2.11
- source:
- b62fee47d2f49ba0b69603ff6deb00fdc4813c9c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/public/lib.urlhandlers.php
r3415 r3519 683 683 } else { 684 684 $core =& $GLOBALS['core']; 685 686 // Save locally post_id from args 687 $post_id = (integer) $args; 688 685 689 if (!is_array($args)) $args = array(); 690 $args['post_id'] = $post_id; 686 691 $args['type'] = 'trackback'; 687 692 … … 689 694 $core->callBehavior('publicBeforeReceiveTrackback',$core,$args); 690 695 691 $tb = new dcTrackback($ GLOBALS['core']);692 $tb->receiveTrackback($ args);696 $tb = new dcTrackback($core); 697 $tb->receiveTrackback($post_id); 693 698 } 694 699 }
Note: See TracChangeset
for help on using the changeset viewer.