Changeset 1385 for trunk/bb-admin/export.php
- Timestamp:
- 03/30/2008 10:31:06 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/bb-admin/export.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bb-admin/export.php
r1192 r1385 222 222 function bb_export_topic_tags( $r, $topic_id ) { 223 223 global $topic_tag_cache; 224 if ( ! $topic =get_topic( $topic_id ) )224 if ( !get_topic( $topic_id ) ) 225 225 return; 226 226 … … 239 239 function bb_export_topic_posts( $r, $topic_id ) { 240 240 global $bb_post_cache; 241 if ( ! $topic =get_topic( $topic_id ) )241 if ( !get_topic( $topic_id ) ) 242 242 return; 243 243 … … 272 272 $bb_user_cache = array(); // For the sake of memory 273 273 } 274 unset($users, $user _ids, $user_id, $page);274 unset($users, $user, $page); 275 275 } 276 276
Note: See TracChangeset
for help on using the changeset viewer.