Changeset 1278 in ExiteCMS for trunk/forum/viewforum.php


Ignore:
Timestamp:
02/13/08 22:03:06 (4 years ago)
Author:
hverton
Message:

fixed forum name and category name disappearing after using the 'mark as read' button

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/forum/viewforum.php

    r1246 r1278  
    8484$variables['user_can_post'] = $can_post; 
    8585 
     86// this forums caption 
     87$variables['forum_cat_id'] = $data['forum_cat_id']; 
     88$variables['forum_cat_name'] = $data['forum_cat_name']; 
     89$variables['forum_name'] = $data['forum_name']; 
     90 
    8691// if a mark-all-read, was requested, check if it's possible, then do it before continuing 
    8792if (iMEMBER && $can_post && isset($action) && $action == "markallread") { 
     
    101106    } 
    102107} 
    103  
    104 // this forums caption 
    105 $variables['forum_cat_id'] = $data['forum_cat_id']; 
    106 $variables['forum_cat_name'] = $data['forum_cat_name']; 
    107 $variables['forum_name'] = $data['forum_name']; 
    108108 
    109109// check for unread posts in this forum 
Note: See TracChangeset for help on using the changeset viewer.