Changeset 3821
- Timestamp:
- 03/21/2012 10:36:43 PM (13 years ago)
- Location:
- branches/plugin/bbp-themes/bbp-twentyten
- Files:
-
- 38 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-themes/bbp-twentyten/archive-forum.php
r3820 r3821 19 19 <div class="entry-content"> 20 20 21 <?php bbp_get_template_part( ' bbpress/content', 'archive-forum' ); ?>21 <?php bbp_get_template_part( 'content', 'archive-forum' ); ?> 22 22 23 23 </div> -
branches/plugin/bbp-themes/bbp-twentyten/archive-topic.php
r3820 r3821 19 19 <div class="entry-content"> 20 20 21 <?php bbp_get_template_part( ' bbpress/content', 'archive-topic' ); ?>21 <?php bbp_get_template_part( 'content', 'archive-topic' ); ?> 22 22 23 23 </div> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress-functions.php
r3780 r3821 15 15 16 16 if ( !class_exists( 'BBP_Twenty_Ten' ) ) : 17 18 // Theme supports bbPress 19 add_theme_support( 'bbpress' ); 20 17 21 /** 18 22 * Loads bbPress Twenty Ten Theme functionality … … 55 59 */ 56 60 private function setup_globals() { 57 $this->name = 'bbPress (Twenty Ten)';61 $this->name = __( 'Twenty Ten (bbPress)', 'bbpress' ) ; 58 62 $this->version = bbp_get_version(); 59 $this->dir = get_stylesheet_directory();60 $this->url = get_stylesheet_directory_uri();63 $this->dir = trailingslashit( get_stylesheet_directory() ); 64 $this->url = trailingslashit( get_stylesheet_directory_uri() ); 61 65 } 62 66 … … 71 75 private function setup_actions() { 72 76 73 // Add theme support for bbPress74 add_action( 'after_setup_theme', array( $this, 'add_theme_support' ) );75 76 77 // Enqueue theme CSS 77 78 add_action( 'bbp_enqueue_scripts', array( $this, 'enqueue_styles' ) ); … … 91 92 // Handles the ajax subscribe/unsubscribe 92 93 add_action( 'wp_ajax_dim-subscription', array( $this, 'ajax_subscription' ) ); 93 }94 95 /**96 * Sets up theme support for bbPress97 *98 * @since bbPress (r2652)99 */100 public function add_theme_support() {101 add_theme_support( 'bbpress' );102 94 } 103 95 … … 118 110 119 111 // bbPress specific 120 wp_enqueue_style( 'bbp-twentyten-bbpress', $this->url . ' /css/bbpress-rtl.css', 'twentyten-rtl', $this->version, 'screen' );112 wp_enqueue_style( 'bbp-twentyten-bbpress', $this->url . 'css/bbpress-rtl.css', 'twentyten-rtl', $this->version, 'screen' ); 121 113 122 114 // Left to right … … 127 119 128 120 // bbPress specific 129 wp_enqueue_style( 'bbp-twentyten-bbpress', $this->url . ' /css/bbpress.css', 'twentyten', $this->version, 'screen' );121 wp_enqueue_style( 'bbp-twentyten-bbpress', $this->url . 'css/bbpress.css', 'twentyten', $this->version, 'screen' ); 130 122 } 131 123 } … … 143 135 144 136 if ( bbp_is_single_topic() ) 145 wp_enqueue_script( 'bbp_topic', $this->url . ' /js/topic.js', array( 'wp-lists' ), $this->version, true );137 wp_enqueue_script( 'bbp_topic', $this->url . 'js/topic.js', array( 'wp-lists' ), $this->version, true ); 146 138 147 139 if ( bbp_is_single_user_edit() ) -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-archive-forum.php
r3651 r3821 18 18 <?php if ( bbp_has_forums() ) : ?> 19 19 20 <?php bbp_get_template_part( ' bbpress/loop', 'forums' ); ?>20 <?php bbp_get_template_part( 'loop', 'forums' ); ?> 21 21 22 22 <?php else : ?> 23 23 24 <?php bbp_get_template_part( ' bbpress/feedback', 'no-forums' ); ?>24 <?php bbp_get_template_part( 'feedback', 'no-forums' ); ?> 25 25 26 26 <?php endif; ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-archive-topic.php
r3820 r3821 18 18 <?php if ( bbp_has_topics() ) : ?> 19 19 20 <?php bbp_get_template_part( ' bbpress/pagination', 'topics' ); ?>20 <?php bbp_get_template_part( 'pagination', 'topics' ); ?> 21 21 22 <?php bbp_get_template_part( ' bbpress/loop', 'topics' ); ?>22 <?php bbp_get_template_part( 'loop', 'topics' ); ?> 23 23 24 <?php bbp_get_template_part( ' bbpress/pagination', 'topics' ); ?>24 <?php bbp_get_template_part( 'pagination', 'topics' ); ?> 25 25 26 26 <?php else : ?> 27 27 28 <?php bbp_get_template_part( ' bbpress/feedback', 'no-topics' ); ?>28 <?php bbp_get_template_part( 'feedback', 'no-topics' ); ?> 29 29 30 30 <?php endif; ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-single-forum.php
r3820 r3821 16 16 <?php if ( post_password_required() ) : ?> 17 17 18 <?php bbp_get_template_part( ' bbpress/form', 'protected' ); ?>18 <?php bbp_get_template_part( 'form', 'protected' ); ?> 19 19 20 20 <?php else : ?> … … 24 24 <?php if ( bbp_get_forum_subforum_count() && bbp_has_forums() ) : ?> 25 25 26 <?php bbp_get_template_part( ' bbpress/loop', 'forums' ); ?>26 <?php bbp_get_template_part( 'loop', 'forums' ); ?> 27 27 28 28 <?php endif; ?> … … 30 30 <?php if ( !bbp_is_forum_category() && bbp_has_topics() ) : ?> 31 31 32 <?php bbp_get_template_part( ' bbpress/pagination', 'topics' ); ?>32 <?php bbp_get_template_part( 'pagination', 'topics' ); ?> 33 33 34 <?php bbp_get_template_part( ' bbpress/loop', 'topics' ); ?>34 <?php bbp_get_template_part( 'loop', 'topics' ); ?> 35 35 36 <?php bbp_get_template_part( ' bbpress/pagination', 'topics' ); ?>36 <?php bbp_get_template_part( 'pagination', 'topics' ); ?> 37 37 38 <?php bbp_get_template_part( ' bbpress/form', 'topic' ); ?>38 <?php bbp_get_template_part( 'form', 'topic' ); ?> 39 39 40 40 <?php elseif( !bbp_is_forum_category() ) : ?> 41 41 42 <?php bbp_get_template_part( ' bbpress/feedback', 'no-topics' ); ?>42 <?php bbp_get_template_part( 'feedback', 'no-topics' ); ?> 43 43 44 <?php bbp_get_template_part( ' bbpress/form', 'topic' ); ?>44 <?php bbp_get_template_part( 'form', 'topic' ); ?> 45 45 46 46 <?php endif; ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-single-reply.php
r3651 r3821 18 18 <?php if ( post_password_required() ) : ?> 19 19 20 <?php bbp_get_template_part( ' bbpress/form', 'protected' ); ?>20 <?php bbp_get_template_part( 'form', 'protected' ); ?> 21 21 22 22 <?php else : ?> 23 23 24 <?php bbp_get_template_part( ' bbpress/loop', 'single-reply' ); ?>24 <?php bbp_get_template_part( 'loop', 'single-reply' ); ?> 25 25 26 26 <?php endif; ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-single-topic.php
r3820 r3821 18 18 <?php if ( post_password_required() ) : ?> 19 19 20 <?php bbp_get_template_part( ' bbpress/form', 'protected' ); ?>20 <?php bbp_get_template_part( 'form', 'protected' ); ?> 21 21 22 22 <?php else : ?> … … 28 28 <?php if ( bbp_show_lead_topic() ) : ?> 29 29 30 <?php bbp_get_template_part( ' bbpress/content', 'single-topic-lead' ); ?>30 <?php bbp_get_template_part( 'content', 'single-topic-lead' ); ?> 31 31 32 32 <?php endif; ?> … … 34 34 <?php if ( bbp_has_replies() ) : ?> 35 35 36 <?php bbp_get_template_part( ' bbpress/pagination', 'replies' ); ?>36 <?php bbp_get_template_part( 'pagination', 'replies' ); ?> 37 37 38 <?php bbp_get_template_part( ' bbpress/loop', 'replies' ); ?>38 <?php bbp_get_template_part( 'loop', 'replies' ); ?> 39 39 40 <?php bbp_get_template_part( ' bbpress/pagination', 'replies' ); ?>40 <?php bbp_get_template_part( 'pagination', 'replies' ); ?> 41 41 42 42 <?php endif; ?> 43 43 44 <?php bbp_get_template_part( ' bbpress/form', 'reply' ); ?>44 <?php bbp_get_template_part( 'form', 'reply' ); ?> 45 45 46 46 <?php endif; ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-single-user-edit.php
r3820 r3821 15 15 16 16 // Profile details 17 bbp_get_template_part( ' bbpress/user', 'details' );17 bbp_get_template_part( 'user', 'details' ); 18 18 19 19 // User edit form 20 bbp_get_template_part( ' bbpress/form', 'user-edit' ); ?>20 bbp_get_template_part( 'form', 'user-edit' ); ?> 21 21 22 22 </div> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-single-user.php
r3820 r3821 14 14 <?php do_action( 'bbp_template_notices' ); ?> 15 15 16 <?php bbp_get_template_part( ' bbpress/user', 'details' ); ?>16 <?php bbp_get_template_part( 'user', 'details' ); ?> 17 17 18 18 <hr /> 19 19 20 <?php bbp_get_template_part( ' bbpress/user', 'subscriptions' ); ?>20 <?php bbp_get_template_part( 'user', 'subscriptions' ); ?> 21 21 22 22 <hr /> 23 23 24 <?php bbp_get_template_part( ' bbpress/user', 'favorites' ); ?>24 <?php bbp_get_template_part( 'user', 'favorites' ); ?> 25 25 26 26 <hr /> 27 27 28 <?php bbp_get_template_part( ' bbpress/user', 'topics-created' ); ?>28 <?php bbp_get_template_part( 'user', 'topics-created' ); ?> 29 29 30 30 </div> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-single-view.php
r3651 r3821 18 18 <?php if ( bbp_view_query() ) : ?> 19 19 20 <?php bbp_get_template_part( ' bbpress/pagination', 'topics' ); ?>20 <?php bbp_get_template_part( 'pagination', 'topics' ); ?> 21 21 22 <?php bbp_get_template_part( ' bbpress/loop', 'topics' ); ?>22 <?php bbp_get_template_part( 'loop', 'topics' ); ?> 23 23 24 <?php bbp_get_template_part( ' bbpress/pagination', 'topics' ); ?>24 <?php bbp_get_template_part( 'pagination', 'topics' ); ?> 25 25 26 26 <?php else : ?> 27 27 28 <?php bbp_get_template_part( ' bbpress/feedback', 'no-topics' ); ?>28 <?php bbp_get_template_part( 'feedback', 'no-topics' ); ?> 29 29 30 30 <?php endif; ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-topic-tag-edit.php
r3651 r3821 18 18 <?php do_action( 'bbp_template_before_topic_tag_edit' ); ?> 19 19 20 <?php bbp_get_template_part( ' bbpress/form', 'topic-tag' ); ?>20 <?php bbp_get_template_part( 'form', 'topic-tag' ); ?> 21 21 22 22 <?php do_action( 'bbp_template_after_topic_tag_edit' ); ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/loop-forums.php
r3820 r3821 31 31 <?php while ( bbp_forums() ) : bbp_the_forum(); ?> 32 32 33 <?php bbp_get_template_part( ' bbpress/loop', 'single-forum' ); ?>33 <?php bbp_get_template_part( 'loop', 'single-forum' ); ?> 34 34 35 35 <?php endwhile; ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/loop-replies.php
r3820 r3821 59 59 <?php while ( bbp_replies() ) : bbp_the_reply(); ?> 60 60 61 <?php bbp_get_template_part( ' bbpress/loop', 'single-reply' ); ?>61 <?php bbp_get_template_part( 'loop', 'single-reply' ); ?> 62 62 63 63 <?php endwhile; ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/loop-topics.php
r3820 r3821 31 31 <?php while ( bbp_topics() ) : bbp_the_topic(); ?> 32 32 33 <?php bbp_get_template_part( ' bbpress/loop', 'single-topic' ); ?>33 <?php bbp_get_template_part( 'loop', 'single-topic' ); ?> 34 34 35 35 <?php endwhile; ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/user-favorites.php
r3820 r3821 20 20 <?php if ( bbp_get_user_favorites() ) : 21 21 22 bbp_get_template_part( ' bbpress/pagination', 'topics' );23 bbp_get_template_part( ' bbpress/loop', 'topics' );24 bbp_get_template_part( ' bbpress/pagination', 'topics' );22 bbp_get_template_part( 'pagination', 'topics' ); 23 bbp_get_template_part( 'loop', 'topics' ); 24 bbp_get_template_part( 'pagination', 'topics' ); 25 25 26 26 else : ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php
r3820 r3821 24 24 <?php if ( bbp_get_user_subscriptions() ) : 25 25 26 bbp_get_template_part( ' bbpress/pagination', 'topics' );27 bbp_get_template_part( ' bbpress/loop', 'topics' );28 bbp_get_template_part( ' bbpress/pagination', 'topics' );26 bbp_get_template_part( 'pagination', 'topics' ); 27 bbp_get_template_part( 'loop', 'topics' ); 28 bbp_get_template_part( 'pagination', 'topics' ); 29 29 30 30 else : ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/user-topics-created.php
r3820 r3821 20 20 <?php if ( bbp_get_user_topics_started() ) : 21 21 22 bbp_get_template_part( ' bbpress/pagination', 'topics' );23 bbp_get_template_part( ' bbpress/loop', 'topics' );24 bbp_get_template_part( ' bbpress/pagination', 'topics' );22 bbp_get_template_part( 'pagination', 'topics' ); 23 bbp_get_template_part( 'loop', 'topics' ); 24 bbp_get_template_part( 'pagination', 'topics' ); 25 25 26 26 else : ?> -
branches/plugin/bbp-themes/bbp-twentyten/page-create-topic.php
r3820 r3821 23 23 <?php the_content(); ?> 24 24 25 <?php bbp_get_template_part( ' bbpress/form', 'topic' ); ?>25 <?php bbp_get_template_part( 'form', 'topic' ); ?> 26 26 27 27 </div> -
branches/plugin/bbp-themes/bbp-twentyten/page-forum-statistics.php
r3820 r3821 99 99 <h2 class="entry-title"><?php _e( 'Popular Topics', 'bbpress' ); ?></h2> 100 100 101 <?php bbp_get_template_part( ' bbpress/pagination', 'topics' ); ?>101 <?php bbp_get_template_part( 'pagination', 'topics' ); ?> 102 102 103 <?php bbp_get_template_part( ' bbpress/loop', 'topics' ); ?>103 <?php bbp_get_template_part( 'loop', 'topics' ); ?> 104 104 105 <?php bbp_get_template_part( ' bbpress/pagination', 'topics' ); ?>105 <?php bbp_get_template_part( 'pagination', 'topics' ); ?> 106 106 107 107 <?php endif; ?> -
branches/plugin/bbp-themes/bbp-twentyten/page-front-forums.php
r3820 r3821 23 23 <?php the_content(); ?> 24 24 25 <?php bbp_get_template_part( ' bbpress/content', 'archive-forum' ); ?>25 <?php bbp_get_template_part( 'content', 'archive-forum' ); ?> 26 26 27 27 </div> -
branches/plugin/bbp-themes/bbp-twentyten/page-front-topics.php
r3820 r3821 23 23 <?php the_content(); ?> 24 24 25 <?php bbp_get_template_part( ' bbpress/content', 'archive-topic' ); ?>25 <?php bbp_get_template_part( 'content', 'archive-topic' ); ?> 26 26 27 27 </div> -
branches/plugin/bbp-themes/bbp-twentyten/page-topics-no-replies.php
r3820 r3821 29 29 <?php if ( bbp_has_topics( array( 'meta_key' => '_bbp_reply_count', 'meta_value' => '1', 'meta_compare' => '<', 'orderby' => 'date', 'show_stickies' => false ) ) ) : ?> 30 30 31 <?php bbp_get_template_part( ' bbpress/pagination', 'topics' ); ?>31 <?php bbp_get_template_part( 'pagination', 'topics' ); ?> 32 32 33 <?php bbp_get_template_part( ' bbpress/loop', 'topics' ); ?>33 <?php bbp_get_template_part( 'loop', 'topics' ); ?> 34 34 35 <?php bbp_get_template_part( ' bbpress/pagination', 'topics' ); ?>35 <?php bbp_get_template_part( 'pagination', 'topics' ); ?> 36 36 37 37 <?php else : ?> 38 38 39 <?php bbp_get_template_part( ' bbpress/feedback', 'no-topics' ); ?>39 <?php bbp_get_template_part( 'feedback', 'no-topics' ); ?> 40 40 41 41 <?php endif; ?> -
branches/plugin/bbp-themes/bbp-twentyten/page-user-login.php
r3820 r3821 29 29 <?php bbp_breadcrumb(); ?> 30 30 31 <?php bbp_get_template_part( ' bbpress/form', 'user-login' ); ?>31 <?php bbp_get_template_part( 'form', 'user-login' ); ?> 32 32 33 33 </div> -
branches/plugin/bbp-themes/bbp-twentyten/page-user-lost-pass.php
r3820 r3821 29 29 <?php bbp_breadcrumb(); ?> 30 30 31 <?php bbp_get_template_part( ' bbpress/form', 'user-lost-pass' ); ?>31 <?php bbp_get_template_part( 'form', 'user-lost-pass' ); ?> 32 32 33 33 </div> -
branches/plugin/bbp-themes/bbp-twentyten/page-user-register.php
r3820 r3821 29 29 <?php bbp_breadcrumb(); ?> 30 30 31 <?php bbp_get_template_part( ' bbpress/form', 'user-register' ); ?>31 <?php bbp_get_template_part( 'form', 'user-register' ); ?> 32 32 33 33 </div> -
branches/plugin/bbp-themes/bbp-twentyten/single-forum-edit.php
r3820 r3821 19 19 <div class="entry-content"> 20 20 21 <?php bbp_get_template_part( ' bbpress/form', 'forum' ); ?>21 <?php bbp_get_template_part( 'form', 'forum' ); ?> 22 22 23 23 </div> -
branches/plugin/bbp-themes/bbp-twentyten/single-forum.php
r3820 r3821 23 23 <div class="entry-content"> 24 24 25 <?php bbp_get_template_part( ' bbpress/content', 'single-forum' ); ?>25 <?php bbp_get_template_part( 'content', 'single-forum' ); ?> 26 26 27 27 </div> … … 30 30 <?php else : // Forum exists, user no access ?> 31 31 32 <?php bbp_get_template_part( ' bbpress/feedback', 'no-access' ); ?>32 <?php bbp_get_template_part( 'feedback', 'no-access' ); ?> 33 33 34 34 <?php endif; ?> -
branches/plugin/bbp-themes/bbp-twentyten/single-reply-edit.php
r3820 r3821 19 19 <div class="entry-content"> 20 20 21 <?php bbp_get_template_part( ' bbpress/form', 'reply' ); ?>21 <?php bbp_get_template_part( 'form', 'reply' ); ?> 22 22 23 23 </div> -
branches/plugin/bbp-themes/bbp-twentyten/single-topic-edit.php
r3820 r3821 19 19 <div class="entry-content"> 20 20 21 <?php bbp_get_template_part( ' bbpress/form', 'topic' ); ?>21 <?php bbp_get_template_part( 'form', 'topic' ); ?> 22 22 23 23 </div> -
branches/plugin/bbp-themes/bbp-twentyten/single-topic-merge.php
r3820 r3821 21 21 <div class="entry-content"> 22 22 23 <?php bbp_get_template_part( ' bbpress/form', 'topic-merge' ); ?>23 <?php bbp_get_template_part( 'form', 'topic-merge' ); ?> 24 24 25 25 </div> -
branches/plugin/bbp-themes/bbp-twentyten/single-topic-split.php
r3820 r3821 21 21 <div class="entry-content"> 22 22 23 <?php bbp_get_template_part( ' bbpress/form', 'topic-split' ); ?>23 <?php bbp_get_template_part( 'form', 'topic-split' ); ?> 24 24 25 25 </div> -
branches/plugin/bbp-themes/bbp-twentyten/single-topic.php
r3820 r3821 23 23 <div class="entry-content"> 24 24 25 <?php bbp_get_template_part( ' bbpress/content', 'single-topic' ); ?>25 <?php bbp_get_template_part( 'content', 'single-topic' ); ?> 26 26 27 27 </div> … … 32 32 <?php elseif ( bbp_is_forum_private( bbp_get_topic_forum_id(), false ) ) : ?> 33 33 34 <?php bbp_get_template_part( ' bbpress/feedback', 'no-access' ); ?>34 <?php bbp_get_template_part( 'feedback', 'no-access' ); ?> 35 35 36 36 <?php endif; ?> -
branches/plugin/bbp-themes/bbp-twentyten/single-user-edit.php
r3820 r3821 16 16 <div class="entry-content"> 17 17 18 <?php bbp_get_template_part( ' bbpress/content', 'single-user-edit' ); ?>18 <?php bbp_get_template_part( 'content', 'single-user-edit' ); ?> 19 19 20 20 </div><!-- .entry-content --> -
branches/plugin/bbp-themes/bbp-twentyten/single-user.php
r3820 r3821 16 16 <div class="entry-content"> 17 17 18 <?php bbp_get_template_part( ' bbpress/content', 'single-user' ); ?>18 <?php bbp_get_template_part( 'content', 'single-user' ); ?> 19 19 20 20 </div><!-- .entry-content --> -
branches/plugin/bbp-themes/bbp-twentyten/single-view.php
r3820 r3821 19 19 <div class="entry-content"> 20 20 21 <?php bbp_get_template_part( ' bbpress/content', 'single-view' ); ?>21 <?php bbp_get_template_part( 'content', 'single-view' ); ?> 22 22 23 23 </div> -
branches/plugin/bbp-themes/bbp-twentyten/taxonomy-topic-tag-edit.php
r3820 r3821 26 26 <?php do_action( 'bbp_template_before_topic_tag_edit' ); ?> 27 27 28 <?php bbp_get_template_part( ' bbpress/form', 'topic-tag' ); ?>28 <?php bbp_get_template_part( 'form', 'topic-tag' ); ?> 29 29 30 30 <?php do_action( 'bbp_template_after_topic_tag_edit' ); ?> -
branches/plugin/bbp-themes/bbp-twentyten/taxonomy-topic-tag.php
r3820 r3821 28 28 <?php if ( bbp_has_topics() ) : ?> 29 29 30 <?php bbp_get_template_part( ' bbpress/pagination', 'topics' ); ?>30 <?php bbp_get_template_part( 'pagination', 'topics' ); ?> 31 31 32 <?php bbp_get_template_part( ' bbpress/loop', 'topics' ); ?>32 <?php bbp_get_template_part( 'loop', 'topics' ); ?> 33 33 34 <?php bbp_get_template_part( ' bbpress/pagination', 'topics' ); ?>34 <?php bbp_get_template_part( 'pagination', 'topics' ); ?> 35 35 36 36 <?php else : ?> 37 37 38 <?php bbp_get_template_part( ' bbpress/feedback', 'no-topics' ); ?>38 <?php bbp_get_template_part( 'feedback', 'no-topics' ); ?> 39 39 40 40 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.