Changeset 1106 for sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/functions.php
- Timestamp:
- 01/08/2015 06:53:48 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/functions.php
r1105 r1106 469 469 * so we have to request more tweets than we actually want and then cut it down here. 470 470 */ 471 if ( $tweets['tweets']) {471 if ( is_array( $tweets['tweets'] ) ) { 472 472 $tweets['tweets'] = array_slice( $tweets['tweets'], 0, 3 ); 473 473 $tweets['tweets'] = self::sanitize_format_tweets( $tweets['tweets'] );
Note: See TracChangeset
for help on using the changeset viewer.