[wp-cvs] wordpress/wp-includes template-functions-general.php, 1.32, 1.33

Matthew Mullenweg saxmatt at users.sourceforge.net
Fri Jun 11 13:09:24 CDT 2004


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

Modified Files:
	template-functions-general.php 
Log Message:
Ugly but works. http://mosquito.wordpress.org/bug_view_page.php?bug_id=0000014

Index: template-functions-general.php
===================================================================
RCS file: /cvsroot/cafelog/wordpress/wp-includes/template-functions-general.php,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** template-functions-general.php	9 Jun 2004 20:35:58 -0000	1.32
--- template-functions-general.php	11 Jun 2004 18:09:21 -0000	1.33
***************
*** 420,426 ****
              }
              if (empty($ak_titles_for_day["$ak_post_title->dom"])) { // first one
!                 $ak_titles_for_day["$ak_post_title->dom"] = htmlspecialchars(stripslashes($ak_post_title->post_title));
              } else {
!                 $ak_titles_for_day["$ak_post_title->dom"] .= $ak_title_separator . htmlspecialchars(stripslashes($ak_post_title->post_title));
              }
          }
--- 420,426 ----
              }
              if (empty($ak_titles_for_day["$ak_post_title->dom"])) { // first one
!                 $ak_titles_for_day["$ak_post_title->dom"] = str_replace('"', '"', wptexturize(stripslashes($ak_post_title->post_title)));
              } else {
!                 $ak_titles_for_day["$ak_post_title->dom"] .= $ak_title_separator . str_replace('"', '"', wptexturize(stripslashes($ak_post_title->post_title)));
              }
          }




More information about the cvs mailing list