Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/18/2018 12:43:27 PM (8 years ago)
Author:
djpaul
Message:

Templates, Nouveau: make inline control structures consistent, and indentation fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-nouveau/buddypress/assets/embeds/activity.php

    r11686 r11861  
     1<?php
     2if ( bp_activity_embed_has_activity( bp_current_action() ) ) :
     3?>
    14
    2         <?php if ( bp_activity_embed_has_activity( bp_current_action() ) ) : ?>
     5    <?php
     6    while ( bp_activities() ) :
     7        bp_the_activity();
     8    ?>
    39
    4             <?php while ( bp_activities() ) : bp_the_activity(); ?>
    5                 <div class="bp-embed-excerpt"><?php bp_activity_embed_excerpt(); ?></div>
     10        <div class="bp-embed-excerpt"><?php bp_activity_embed_excerpt(); ?></div>
    611
    7                 <?php bp_activity_embed_media(); ?>
     12        <?php bp_activity_embed_media(); ?>
    813
    9             <?php endwhile; ?>
     14    <?php endwhile; ?>
    1015
    11         <?php endif; ?>
     16<?php
     17endif;
Note: See TracChangeset for help on using the changeset viewer.