Changeset 3069
- Timestamp:
- 06/27/2010 12:29:31 AM (16 years ago)
- Location:
- branches/1.2
- Files:
-
- 6 edited
-
bp-activity.php (modified) (1 diff)
-
bp-friends.php (modified) (1 diff)
-
bp-groups.php (modified) (1 diff)
-
bp-messages.php (modified) (1 diff)
-
bp-themes/bp-default/_inc/global.js (modified) (1 diff)
-
bp-themes/bp-default/forums/forums-loop.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/bp-activity.php
r2838 r3069 263 263 global $bp; ?> 264 264 <table class="notification-settings" id="activity-notification-settings"> 265 <tr> 266 <th class="icon"></th> 267 <th class="title"><?php _e( 'Activity', 'buddypress' ) ?></th> 268 <th class="yes"><?php _e( 'Yes', 'buddypress' ) ?></th> 269 <th class="no"><?php _e( 'No', 'buddypress' )?></th> 270 </tr> 271 272 <tr> 273 <td></td> 274 <td><?php printf( __( 'A member mentions you in an update using "@%s"', 'buddypress' ), bp_core_get_username( $bp->loggedin_user->id, $bp->loggedin_user->userdata->user_nicename, $bp->loggedin_user->userdata->user_login ) ) ?></td> 275 <td class="yes"><input type="radio" name="notifications[notification_activity_new_mention]" value="yes" <?php if ( !get_usermeta( $bp->loggedin_user->id, 'notification_activity_new_mention' ) || 'yes' == get_usermeta( $bp->loggedin_user->id, 'notification_activity_new_mention' ) ) { ?>checked="checked" <?php } ?>/></td> 276 <td class="no"><input type="radio" name="notifications[notification_activity_new_mention]" value="no" <?php if ( 'no' == get_usermeta( $bp->loggedin_user->id, 'notification_activity_new_mention' ) ) { ?>checked="checked" <?php } ?>/></td> 277 </tr> 278 <tr> 279 <td></td> 280 <td><?php printf( __( "A member replies to an update or comment you've posted", 'buddypress' ), $current_user->user_login ) ?></td> 281 <td class="yes"><input type="radio" name="notifications[notification_activity_new_reply]" value="yes" <?php if ( !get_usermeta( $bp->loggedin_user->id, 'notification_activity_new_reply' ) || 'yes' == get_usermeta( $bp->loggedin_user->id, 'notification_activity_new_reply' ) ) { ?>checked="checked" <?php } ?>/></td> 282 <td class="no"><input type="radio" name="notifications[notification_activity_new_reply]" value="no" <?php if ( 'no' == get_usermeta( $bp->loggedin_user->id, 'notification_activity_new_reply' ) ) { ?>checked="checked" <?php } ?>/></td> 283 </tr> 284 285 <?php do_action( 'bp_activity_screen_notification_settings' ) ?> 265 <thead> 266 <tr> 267 <th class="icon"></th> 268 <th class="title"><?php _e( 'Activity', 'buddypress' ) ?></th> 269 <th class="yes"><?php _e( 'Yes', 'buddypress' ) ?></th> 270 <th class="no"><?php _e( 'No', 'buddypress' )?></th> 271 </tr> 272 </thead> 273 274 <tbody> 275 <tr> 276 <td></td> 277 <td><?php printf( __( 'A member mentions you in an update using "@%s"', 'buddypress' ), bp_core_get_username( $bp->loggedin_user->id, $bp->loggedin_user->userdata->user_nicename, $bp->loggedin_user->userdata->user_login ) ) ?></td> 278 <td class="yes"><input type="radio" name="notifications[notification_activity_new_mention]" value="yes" <?php if ( !get_usermeta( $bp->loggedin_user->id, 'notification_activity_new_mention' ) || 'yes' == get_usermeta( $bp->loggedin_user->id, 'notification_activity_new_mention' ) ) { ?>checked="checked" <?php } ?>/></td> 279 <td class="no"><input type="radio" name="notifications[notification_activity_new_mention]" value="no" <?php if ( 'no' == get_usermeta( $bp->loggedin_user->id, 'notification_activity_new_mention' ) ) { ?>checked="checked" <?php } ?>/></td> 280 </tr> 281 <tr> 282 <td></td> 283 <td><?php printf( __( "A member replies to an update or comment you've posted", 'buddypress' ), $current_user->user_login ) ?></td> 284 <td class="yes"><input type="radio" name="notifications[notification_activity_new_reply]" value="yes" <?php if ( !get_usermeta( $bp->loggedin_user->id, 'notification_activity_new_reply' ) || 'yes' == get_usermeta( $bp->loggedin_user->id, 'notification_activity_new_reply' ) ) { ?>checked="checked" <?php } ?>/></td> 285 <td class="no"><input type="radio" name="notifications[notification_activity_new_reply]" value="no" <?php if ( 'no' == get_usermeta( $bp->loggedin_user->id, 'notification_activity_new_reply' ) ) { ?>checked="checked" <?php } ?>/></td> 286 </tr> 287 288 <?php do_action( 'bp_activity_screen_notification_settings' ) ?> 289 </tbody> 286 290 </table> 287 291 <?php -
branches/1.2/bp-friends.php
r2933 r3069 143 143 global $current_user; ?> 144 144 <table class="notification-settings" id="friends-notification-settings"> 145 <tr> 146 <th class="icon"></th> 147 <th class="title"><?php _e( 'Friends', 'buddypress' ) ?></th> 148 <th class="yes"><?php _e( 'Yes', 'buddypress' ) ?></th> 149 <th class="no"><?php _e( 'No', 'buddypress' )?></th> 150 </tr> 151 <tr> 152 <td></td> 153 <td><?php _e( 'A member sends you a friendship request', 'buddypress' ) ?></td> 154 <td class="yes"><input type="radio" name="notifications[notification_friends_friendship_request]" value="yes" <?php if ( !get_usermeta( $current_user->id,'notification_friends_friendship_request') || 'yes' == get_usermeta( $current_user->id,'notification_friends_friendship_request') ) { ?>checked="checked" <?php } ?>/></td> 155 <td class="no"><input type="radio" name="notifications[notification_friends_friendship_request]" value="no" <?php if ( get_usermeta( $current_user->id,'notification_friends_friendship_request') == 'no' ) { ?>checked="checked" <?php } ?>/></td> 156 </tr> 157 <tr> 158 <td></td> 159 <td><?php _e( 'A member accepts your friendship request', 'buddypress' ) ?></td> 160 <td class="yes"><input type="radio" name="notifications[notification_friends_friendship_accepted]" value="yes" <?php if ( !get_usermeta( $current_user->id,'notification_friends_friendship_accepted') || 'yes' == get_usermeta( $current_user->id,'notification_friends_friendship_accepted') ) { ?>checked="checked" <?php } ?>/></td> 161 <td class="no"><input type="radio" name="notifications[notification_friends_friendship_accepted]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id,'notification_friends_friendship_accepted') ) { ?>checked="checked" <?php } ?>/></td> 162 </tr> 163 164 <?php do_action( 'friends_screen_notification_settings' ); ?> 145 <thead> 146 <tr> 147 <th class="icon"></th> 148 <th class="title"><?php _e( 'Friends', 'buddypress' ) ?></th> 149 <th class="yes"><?php _e( 'Yes', 'buddypress' ) ?></th> 150 <th class="no"><?php _e( 'No', 'buddypress' )?></th> 151 </tr> 152 </thead> 153 154 <tbody> 155 <tr> 156 <td></td> 157 <td><?php _e( 'A member sends you a friendship request', 'buddypress' ) ?></td> 158 <td class="yes"><input type="radio" name="notifications[notification_friends_friendship_request]" value="yes" <?php if ( !get_usermeta( $current_user->id,'notification_friends_friendship_request') || 'yes' == get_usermeta( $current_user->id,'notification_friends_friendship_request') ) { ?>checked="checked" <?php } ?>/></td> 159 <td class="no"><input type="radio" name="notifications[notification_friends_friendship_request]" value="no" <?php if ( get_usermeta( $current_user->id,'notification_friends_friendship_request') == 'no' ) { ?>checked="checked" <?php } ?>/></td> 160 </tr> 161 <tr> 162 <td></td> 163 <td><?php _e( 'A member accepts your friendship request', 'buddypress' ) ?></td> 164 <td class="yes"><input type="radio" name="notifications[notification_friends_friendship_accepted]" value="yes" <?php if ( !get_usermeta( $current_user->id,'notification_friends_friendship_accepted') || 'yes' == get_usermeta( $current_user->id,'notification_friends_friendship_accepted') ) { ?>checked="checked" <?php } ?>/></td> 165 <td class="no"><input type="radio" name="notifications[notification_friends_friendship_accepted]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id,'notification_friends_friendship_accepted') ) { ?>checked="checked" <?php } ?>/></td> 166 </tr> 167 168 <?php do_action( 'friends_screen_notification_settings' ); ?> 169 </tbody> 165 170 </table> 166 171 <?php -
branches/1.2/bp-groups.php
r3061 r3069 962 962 global $current_user; ?> 963 963 <table class="notification-settings" id="groups-notification-settings"> 964 <tr> 965 <th class="icon"></th> 966 <th class="title"><?php _e( 'Groups', 'buddypress' ) ?></th> 967 <th class="yes"><?php _e( 'Yes', 'buddypress' ) ?></th> 968 <th class="no"><?php _e( 'No', 'buddypress' )?></th> 969 </tr> 970 <tr> 971 <td></td> 972 <td><?php _e( 'A member invites you to join a group', 'buddypress' ) ?></td> 973 <td class="yes"><input type="radio" name="notifications[notification_groups_invite]" value="yes" <?php if ( !get_usermeta( $current_user->id, 'notification_groups_invite') || 'yes' == get_usermeta( $current_user->id, 'notification_groups_invite') ) { ?>checked="checked" <?php } ?>/></td> 974 <td class="no"><input type="radio" name="notifications[notification_groups_invite]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id, 'notification_groups_invite') ) { ?>checked="checked" <?php } ?>/></td> 975 </tr> 976 <tr> 977 <td></td> 978 <td><?php _e( 'Group information is updated', 'buddypress' ) ?></td> 979 <td class="yes"><input type="radio" name="notifications[notification_groups_group_updated]" value="yes" <?php if ( !get_usermeta( $current_user->id, 'notification_groups_group_updated') || 'yes' == get_usermeta( $current_user->id, 'notification_groups_group_updated') ) { ?>checked="checked" <?php } ?>/></td> 980 <td class="no"><input type="radio" name="notifications[notification_groups_group_updated]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id, 'notification_groups_group_updated') ) { ?>checked="checked" <?php } ?>/></td> 981 </tr> 982 <tr> 983 <td></td> 984 <td><?php _e( 'You are promoted to a group administrator or moderator', 'buddypress' ) ?></td> 985 <td class="yes"><input type="radio" name="notifications[notification_groups_admin_promotion]" value="yes" <?php if ( !get_usermeta( $current_user->id, 'notification_groups_admin_promotion') || 'yes' == get_usermeta( $current_user->id, 'notification_groups_admin_promotion') ) { ?>checked="checked" <?php } ?>/></td> 986 <td class="no"><input type="radio" name="notifications[notification_groups_admin_promotion]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id, 'notification_groups_admin_promotion') ) { ?>checked="checked" <?php } ?>/></td> 987 </tr> 988 <tr> 989 <td></td> 990 <td><?php _e( 'A member requests to join a private group for which you are an admin', 'buddypress' ) ?></td> 991 <td class="yes"><input type="radio" name="notifications[notification_groups_membership_request]" value="yes" <?php if ( !get_usermeta( $current_user->id, 'notification_groups_membership_request') || 'yes' == get_usermeta( $current_user->id, 'notification_groups_membership_request') ) { ?>checked="checked" <?php } ?>/></td> 992 <td class="no"><input type="radio" name="notifications[notification_groups_membership_request]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id, 'notification_groups_membership_request') ) { ?>checked="checked" <?php } ?>/></td> 993 </tr> 994 995 <?php do_action( 'groups_screen_notification_settings' ); ?> 964 <thead> 965 <tr> 966 <th class="icon"></th> 967 <th class="title"><?php _e( 'Groups', 'buddypress' ) ?></th> 968 <th class="yes"><?php _e( 'Yes', 'buddypress' ) ?></th> 969 <th class="no"><?php _e( 'No', 'buddypress' )?></th> 970 </tr> 971 </thead> 972 973 <tbody> 974 <tr> 975 <td></td> 976 <td><?php _e( 'A member invites you to join a group', 'buddypress' ) ?></td> 977 <td class="yes"><input type="radio" name="notifications[notification_groups_invite]" value="yes" <?php if ( !get_usermeta( $current_user->id, 'notification_groups_invite') || 'yes' == get_usermeta( $current_user->id, 'notification_groups_invite') ) { ?>checked="checked" <?php } ?>/></td> 978 <td class="no"><input type="radio" name="notifications[notification_groups_invite]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id, 'notification_groups_invite') ) { ?>checked="checked" <?php } ?>/></td> 979 </tr> 980 <tr> 981 <td></td> 982 <td><?php _e( 'Group information is updated', 'buddypress' ) ?></td> 983 <td class="yes"><input type="radio" name="notifications[notification_groups_group_updated]" value="yes" <?php if ( !get_usermeta( $current_user->id, 'notification_groups_group_updated') || 'yes' == get_usermeta( $current_user->id, 'notification_groups_group_updated') ) { ?>checked="checked" <?php } ?>/></td> 984 <td class="no"><input type="radio" name="notifications[notification_groups_group_updated]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id, 'notification_groups_group_updated') ) { ?>checked="checked" <?php } ?>/></td> 985 </tr> 986 <tr> 987 <td></td> 988 <td><?php _e( 'You are promoted to a group administrator or moderator', 'buddypress' ) ?></td> 989 <td class="yes"><input type="radio" name="notifications[notification_groups_admin_promotion]" value="yes" <?php if ( !get_usermeta( $current_user->id, 'notification_groups_admin_promotion') || 'yes' == get_usermeta( $current_user->id, 'notification_groups_admin_promotion') ) { ?>checked="checked" <?php } ?>/></td> 990 <td class="no"><input type="radio" name="notifications[notification_groups_admin_promotion]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id, 'notification_groups_admin_promotion') ) { ?>checked="checked" <?php } ?>/></td> 991 </tr> 992 <tr> 993 <td></td> 994 <td><?php _e( 'A member requests to join a private group for which you are an admin', 'buddypress' ) ?></td> 995 <td class="yes"><input type="radio" name="notifications[notification_groups_membership_request]" value="yes" <?php if ( !get_usermeta( $current_user->id, 'notification_groups_membership_request') || 'yes' == get_usermeta( $current_user->id, 'notification_groups_membership_request') ) { ?>checked="checked" <?php } ?>/></td> 996 <td class="no"><input type="radio" name="notifications[notification_groups_membership_request]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id, 'notification_groups_membership_request') ) { ?>checked="checked" <?php } ?>/></td> 997 </tr> 998 999 <?php do_action( 'groups_screen_notification_settings' ); ?> 1000 </tbody> 996 1001 </table> 997 1002 <?php -
branches/1.2/bp-messages.php
r2794 r3069 237 237 global $current_user; ?> 238 238 <table class="notification-settings" id="messages-notification-settings"> 239 <tr> 240 <th class="icon"></th> 241 <th class="title"><?php _e( 'Messages', 'buddypress' ) ?></th> 242 <th class="yes"><?php _e( 'Yes', 'buddypress' ) ?></th> 243 <th class="no"><?php _e( 'No', 'buddypress' )?></th> 244 </tr> 245 <tr> 246 <td></td> 247 <td><?php _e( 'A member sends you a new message', 'buddypress' ) ?></td> 248 <td class="yes"><input type="radio" name="notifications[notification_messages_new_message]" value="yes" <?php if ( !get_usermeta( $current_user->id, 'notification_messages_new_message' ) || 'yes' == get_usermeta( $current_user->id, 'notification_messages_new_message' ) ) { ?>checked="checked" <?php } ?>/></td> 249 <td class="no"><input type="radio" name="notifications[notification_messages_new_message]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id, 'notification_messages_new_message' ) ) { ?>checked="checked" <?php } ?>/></td> 250 </tr> 251 <tr> 252 <td></td> 253 <td><?php _e( 'A new site notice is posted', 'buddypress' ) ?></td> 254 <td class="yes"><input type="radio" name="notifications[notification_messages_new_notice]" value="yes" <?php if ( !get_usermeta( $current_user->id, 'notification_messages_new_notice' ) || 'yes' == get_usermeta( $current_user->id, 'notification_messages_new_notice' ) ) { ?>checked="checked" <?php } ?>/></td> 255 <td class="no"><input type="radio" name="notifications[notification_messages_new_notice]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id, 'notification_messages_new_notice' ) ) { ?>checked="checked" <?php } ?>/></td> 256 </tr> 257 258 <?php do_action( 'messages_screen_notification_settings' ) ?> 239 <thead> 240 <tr> 241 <th class="icon"></th> 242 <th class="title"><?php _e( 'Messages', 'buddypress' ) ?></th> 243 <th class="yes"><?php _e( 'Yes', 'buddypress' ) ?></th> 244 <th class="no"><?php _e( 'No', 'buddypress' )?></th> 245 </tr> 246 </thead> 247 248 <tbody> 249 <tr> 250 <td></td> 251 <td><?php _e( 'A member sends you a new message', 'buddypress' ) ?></td> 252 <td class="yes"><input type="radio" name="notifications[notification_messages_new_message]" value="yes" <?php if ( !get_usermeta( $current_user->id, 'notification_messages_new_message' ) || 'yes' == get_usermeta( $current_user->id, 'notification_messages_new_message' ) ) { ?>checked="checked" <?php } ?>/></td> 253 <td class="no"><input type="radio" name="notifications[notification_messages_new_message]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id, 'notification_messages_new_message' ) ) { ?>checked="checked" <?php } ?>/></td> 254 </tr> 255 <tr> 256 <td></td> 257 <td><?php _e( 'A new site notice is posted', 'buddypress' ) ?></td> 258 <td class="yes"><input type="radio" name="notifications[notification_messages_new_notice]" value="yes" <?php if ( !get_usermeta( $current_user->id, 'notification_messages_new_notice' ) || 'yes' == get_usermeta( $current_user->id, 'notification_messages_new_notice' ) ) { ?>checked="checked" <?php } ?>/></td> 259 <td class="no"><input type="radio" name="notifications[notification_messages_new_notice]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id, 'notification_messages_new_notice' ) ) { ?>checked="checked" <?php } ?>/></td> 260 </tr> 261 262 <?php do_action( 'messages_screen_notification_settings' ) ?> 263 </tbody> 259 264 </table> 260 265 <?php -
branches/1.2/bp-themes/bp-default/_inc/global.js
r2972 r3069 820 820 /** Alternate Highlighting ******************************************/ 821 821 822 jq(' tabletr, div.message-box').each( function(i) {822 jq('body#bp-default table tbody tr, div.message-box').each( function(i) { 823 823 if ( i % 2 != 1 ) 824 824 jq(this).addClass('alt'); -
branches/1.2/bp-themes/bp-default/forums/forums-loop.php
r2895 r3069 20 20 21 21 <table class="forum"> 22 <thead> 23 <tr> 24 <th id="th-title"><?php _e( 'Topic Title', 'buddypress' ) ?></th> 25 <th id="th-poster"><?php _e( 'Latest Poster', 'buddypress' ) ?></th> 22 26 23 <tr>24 <th id="th-title"><?php _e( 'Topic Title', 'buddypress' ) ?></th>25 <th id="th-poster"><?php _e( 'Latest Poster', 'buddypress' ) ?></th>27 <?php if ( !bp_is_group_forum() ) : ?> 28 <th id="th-group"><?php _e( 'Posted In Group', 'buddypress' ) ?></th> 29 <?php endif; ?> 26 30 27 <?php if ( !bp_is_group_forum() ) : ?> 28 <th id="th-group"><?php _e( 'Posted In Group', 'buddypress' ) ?></th> 29 <?php endif; ?> 31 <th id="th-postcount"><?php _e( 'Posts', 'buddypress' ) ?></th> 32 <th id="th-freshness"><?php _e( 'Freshness', 'buddypress' ) ?></th> 30 33 31 <th id="th-postcount"><?php _e( 'Posts', 'buddypress' ) ?></th> 32 <th id="th-freshness"><?php _e( 'Freshness', 'buddypress' ) ?></th> 34 <?php do_action( 'bp_directory_forums_extra_cell_head' ) ?> 33 35 34 <?php do_action( 'bp_directory_forums_extra_cell_head' ) ?> 36 </tr> 37 </thead> 35 38 36 < /tr>39 <tbody> 37 40 38 <?php while ( bp_forum_topics() ) : bp_the_forum_topic(); ?>41 <?php while ( bp_forum_topics() ) : bp_the_forum_topic(); ?> 39 42 40 <tr class="<?php bp_the_topic_css_class() ?>">41 <td class="td-title">42 <a class="topic-title" href="<?php bp_the_topic_permalink() ?>" title="<?php bp_the_topic_title() ?> - <?php _e( 'Permalink', 'buddypress' ) ?>">43 <?php bp_the_topic_title() ?>44 </a>45 </td>46 <td class="td-poster">47 <a href="<?php bp_the_topic_permalink() ?>"><?php bp_the_topic_last_poster_avatar( 'type=thumb&width=20&height=20' ) ?></a>48 <div class="poster-name"><?php bp_the_topic_last_poster_name() ?></div>49 </td>43 <tr class="<?php bp_the_topic_css_class() ?>"> 44 <td class="td-title"> 45 <a class="topic-title" href="<?php bp_the_topic_permalink() ?>" title="<?php bp_the_topic_title() ?> - <?php _e( 'Permalink', 'buddypress' ) ?>"> 46 <?php bp_the_topic_title() ?> 47 </a> 48 </td> 49 <td class="td-poster"> 50 <a href="<?php bp_the_topic_permalink() ?>"><?php bp_the_topic_last_poster_avatar( 'type=thumb&width=20&height=20' ) ?></a> 51 <div class="poster-name"><?php bp_the_topic_last_poster_name() ?></div> 52 </td> 50 53 51 <?php if ( !bp_is_group_forum() ) : ?> 52 <td class="td-group"> 53 <a href="<?php bp_the_topic_object_permalink() ?>"><?php bp_the_topic_object_avatar( 'type=thumb&width=20&height=20' ) ?></a> 54 <div class="object-name"><a href="<?php bp_the_topic_object_permalink() ?>" title="<?php bp_the_topic_object_name() ?>"><?php bp_the_topic_object_name() ?></a></div> 54 <?php if ( !bp_is_group_forum() ) : ?> 55 <td class="td-group"> 56 <a href="<?php bp_the_topic_object_permalink() ?>"><?php bp_the_topic_object_avatar( 'type=thumb&width=20&height=20' ) ?></a> 57 <div class="object-name"><a href="<?php bp_the_topic_object_permalink() ?>" title="<?php bp_the_topic_object_name() ?>"><?php bp_the_topic_object_name() ?></a></div> 58 </td> 59 <?php endif; ?> 60 61 <td class="td-postcount"> 62 <?php bp_the_topic_total_posts() ?> 55 63 </td> 56 <?php endif; ?> 64 <td class="td-freshness"> 65 <?php bp_the_topic_time_since_last_post() ?> 66 </td> 57 67 58 <td class="td-postcount"> 59 <?php bp_the_topic_total_posts() ?> 60 </td> 61 <td class="td-freshness"> 62 <?php bp_the_topic_time_since_last_post() ?> 63 </td> 68 <?php do_action( 'bp_directory_forums_extra_cell' ) ?> 69 </tr> 64 70 65 <?php do_action( 'bp_directory_forums_extra_cell' ) ?> 66 </tr> 71 <?php do_action( 'bp_directory_forums_extra_row' ) ?> 67 72 68 <?php do_action( 'bp_directory_forums_extra_row' )?>73 <?php endwhile; ?> 69 74 70 <?php endwhile; ?> 71 75 </tbody> 72 76 </table> 73 77
Note: See TracChangeset
for help on using the changeset viewer.