Skip to:
Content

bbPress.org


Ignore:
Timestamp:
03/30/2008 10:31:06 AM (18 years ago)
Author:
sambauers
Message:

Various optimisations and typo fixes - Fixes #842 - props momo360modena

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bb-admin/export.php

    r1192 r1385  
    222222function bb_export_topic_tags( $r, $topic_id ) {
    223223    global $topic_tag_cache;
    224     if ( !$topic = get_topic( $topic_id ) )
     224    if ( !get_topic( $topic_id ) )
    225225        return;
    226226
     
    239239function bb_export_topic_posts( $r, $topic_id ) {
    240240    global $bb_post_cache;
    241     if ( !$topic = get_topic( $topic_id ) )
     241    if ( !get_topic( $topic_id ) )
    242242        return;
    243243
     
    272272            $bb_user_cache = array(); // For the sake of memory
    273273        }
    274         unset($users, $user_ids, $user_id, $page);
     274        unset($users, $user, $page);
    275275    }
    276276
Note: See TracChangeset for help on using the changeset viewer.