Skip to:
Content

bbPress.org


Ignore:
Timestamp:
02/28/2008 08:27:59 AM (18 years ago)
Author:
mdawaffe
Message:

clean up nocache_headers(): call it once, in one place, and only if user is logged in. see #770 braches/0.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/0.8/bb-includes/functions.php

    r1139 r1141  
    18761876
    18771877function bb_send_headers() {
     1878        if ( bb_is_user_logged_in() )
     1879                nocache_headers();
    18781880        @header('Content-Type: ' . bb_get_option( 'html_type' ) . '; charset=' . bb_get_option( 'charset' ));
    18791881        do_action( 'bb_send_headers' );
Note: See TracChangeset for help on using the changeset viewer.