Changeset 4809
- Timestamp:
- 01/27/2017 03:45:59 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/official-wordpress-events/official-wordpress-events.php
r4808 r4809 50 50 */ 51 51 public function render_events() { 52 $output = ''; 52 53 $events = $this->group_events_by_date( $this->get_all_events() ); 53 54 54 55 if ( $events ) { 56 ob_start(); 55 57 require_once( __DIR__ . '/template-events.php' ); 56 } 58 $output = ob_get_flush(); 59 } 60 61 return $output; 57 62 } 58 63
Note: See TracChangeset
for help on using the changeset viewer.