[wp-cvs] wordpress wp-blog-header.php,1.128,1.129

Ryan Boren rboren at users.sourceforge.net
Mon Feb 14 09:17:22 GMT 2005


Update of /cvsroot/cafelog/wordpress
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12466

Modified Files:
	wp-blog-header.php 
Log Message:
Load comments-popup template through the index.

Index: wp-blog-header.php
===================================================================
RCS file: /cvsroot/cafelog/wordpress/wp-blog-header.php,v
retrieving revision 1.128
retrieving revision 1.129
diff -C2 -d -r1.128 -r1.129
*** wp-blog-header.php	14 Feb 2005 05:50:46 -0000	1.128
--- wp-blog-header.php	14 Feb 2005 09:17:18 -0000	1.129
***************
*** 86,90 ****
   }
  
! $wpvarstoreset = array('m','p','posts','w', 'cat','withcomments','s','search','exact', 'sentence','preview','debug', 'calendar','page','paged','more','tb', 'pb','author','order','orderby', 'year', 'monthnum', 'day', 'hour', 'minute', 'second', 'name', 'category_name', 'feed', 'author_name', 'static', 'pagename', 'page_id', 'error');
  
  $wpvarstoreset = apply_filters('query_vars', $wpvarstoreset);
--- 86,90 ----
   }
  
! $wpvarstoreset = array('m','p','posts','w', 'cat','withcomments','s','search','exact', 'sentence','preview','debug', 'calendar','page','paged','more','tb', 'pb','author','order','orderby', 'year', 'monthnum', 'day', 'hour', 'minute', 'second', 'name', 'category_name', 'feed', 'author_name', 'static', 'pagename', 'page_id', 'error', 'comments_popup');
  
  $wpvarstoreset = apply_filters('query_vars', $wpvarstoreset);
***************
*** 228,231 ****
--- 228,234 ----
  		include(get_archive_template());
  		exit;
+ 	} else if ( is_comments_popup() && get_comments_popup_template() ) {
+ 		include(get_comments_popup_template());
+ 		exit;
  	} else if ( is_paged() && get_paged_template() ) {
  		include(get_paged_template());



More information about the cvs mailing list