Skip to:
Content

bbPress.org


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

Various optimisations and typo fixes - Fixes #842 - props momo360modena - branches/0.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/0.8/bb-admin/export.php

    r1173 r1386  
    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.