Changeset 1189
- Timestamp:
- 01/25/2015 09:30:37 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/common/includes/slack/trac/comment-handler.php
r1130 r1189 19 19 20 20 $this->generate_payload(); 21 $this->send->send( $this->trac->get_firehose_channel() ); 21 $firehose = $this->trac->get_firehose_channel(); 22 23 // We still want to process this payload even if no firehose channel 24 // is specified, as we may use it to process mentions and such. 25 if ( $firehose ) { 26 $this->send->send( $firehose ); 27 } 22 28 } 23 29
Note: See TracChangeset
for help on using the changeset viewer.