Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
11/02/2009 07:54:21 PM (16 years ago)
Author:
apeatling
Message:

Merging 1.1 branch changes and syncing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-wire/deprecated/bp-wire-deprecated.php

    r1905 r2077  
    44 *
    55 * This file contains functions that are deprecated.
    6  * You should not under any circumstance use these functions as they are 
     6 * You should not under any circumstance use these functions as they are
    77 * either no longer valid, or have been replaced with something much more awesome.
    88 *
     
    1313 * Of course, things will still work if you use these functions but you will
    1414 * be the laughing stock of the BuddyPress community. We will all point and laugh at
    15  * you. You'll also be making things harder for yourself in the long run, 
     15 * you. You'll also be making things harder for yourself in the long run,
    1616 * and you will miss out on lovely performance and functionality improvements.
    17  * 
     17 *
    1818 * If you've checked you are not using any deprecated functions and finished your little
    1919 * dance, you can add the following line to your wp-config.php file to prevent any of
     
    2727    if ( !file_exists( WP_CONTENT_DIR . '/bp-themes' ) )
    2828        return $template;
    29    
     29
    3030    /* Enqueue the structure CSS file to give basic positional formatting for components */
    31     wp_enqueue_style( 'bp-wire-structure', BP_PLUGIN_URL . '/bp-wire/deprecated/css/structure.css' );   
     31    wp_enqueue_style( 'bp-wire-structure', BP_PLUGIN_URL . '/bp-wire/deprecated/css/structure.css' );
    3232}
    3333add_action( 'bp_styles', 'bp_wire_add_structure_css' );
     
    4646            <span class="ajax-loader"></span>
    4747        </div>
    48            
     48
    4949        <div id="wire-pagination" class="pagination-links">
    5050            <?php bp_wire_pagination() ?>
    5151        </div>
    52        
     52
    5353        <ul id="wire-post-list">
    5454        <?php $counter = 0; ?>
     
    5757                <div class="wire-post-metadata">
    5858                    <?php bp_wire_post_author_avatar() ?>
    59                     <?php _e( 'On', 'buddypress' ) ?> <?php bp_wire_post_date() ?> 
     59                    <?php _e( 'On', 'buddypress' ) ?> <?php bp_wire_post_date() ?>
    6060                    <?php bp_wire_post_author_name() ?> <?php _e( 'said:', 'buddypress' ) ?>
    6161                    <?php bp_wire_delete_link() ?>
    6262                </div>
    63                
     63
    6464                <div class="wire-post-content">
    6565                    <?php bp_wire_post_content() ?>
     
    6969        <?php endwhile; ?>
    7070        </ul>
    71    
     71
    7272    <?php else: ?>
    7373
     
    7777
    7878    <?php endif; ?>
    79    
     79
    8080    <input type="hidden" name="bp_wire_item_id" id="bp_wire_item_id" value="<?php echo attribute_escape( $_POST['bp_wire_item_id'] ) ?>" />
    8181    <?php
Note: See TracChangeset for help on using the changeset viewer.