[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
- Previous message: [wp-cvs] wordpress/wp-includes functions-formatting.php,1.34,1.35
- Next message: [wp-cvs] wordpress/wp-admin admin-footer.php, 1.8,
1.9 admin-functions.php, 1.28, 1.29 admin-header.php, 1.23,
1.24 auth.php, 1.6, 1.7 bookmarklet.php, 1.9,
1.10 categories.php, 1.31, 1.32 edit-comments.php, 1.24,
1.25 edit-form-advanced.php, 1.25, 1.26 edit-form-comment.php,
1.9, 1.10 edit-form.php, 1.22, 1.23 edit.php, 1.22,
1.23 import-b2.php, 1.10, 1.11 import-blogger.php, 1.12,
1.13 import-greymatter.php, 1.14, 1.15 import-livejournal.php,
1.4, 1.5 import-mt.php, 1.11, 1.12 import-rss.php, 1.4,
1.5 import-textpattern.php, 1.10, 1.11 index.php, 1.7,
1.8 install-helper.php, 1.2, 1.3 link-add.php, 1.12,
1.13 link-categories.php, 1.9, 1.10 link-import.php, 1.11,
1.12 link-manager.php, 1.25, 1.26 link-parse-opml.php, 1.6,
1.7 menu.php, 1.16, 1.17 moderation.php, 1.10,
1.11 optionhandler.php, 1.8, 1.9 options-discussion.php, 1.15,
1.16 options-general.php, 1.21, 1.22 options-head.php, 1.8,
1.9 options-misc.php, 1.9, 1.10 options-permalink.php, 1.33,
1.34 options-reading.php, 1.9, 1.10 options-writing.php, 1.18,
1.19 options.php, 1.23, 1.24 plugins.php, 1.11, 1.12 post.php,
1.65, 1.66 profile.php, 1.22, 1.23 quicktags.js, 1.6,
1.7 quicktags.php, 1.1, 1.2 setup-config.php, 1.2,
1.3 sidebar.php, 1.10, 1.11 templates.php, 1.19,
1.20 upgrade-functions.php, 1.58, 1.59 upload.php, 1.14,
1.15 users.php, 1.27, 1.28 wp-admin.css, 1.53, 1.54 xmlrpc.php,
1.5, 1.6
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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)));
}
}
- Previous message: [wp-cvs] wordpress/wp-includes functions-formatting.php,1.34,1.35
- Next message: [wp-cvs] wordpress/wp-admin admin-footer.php, 1.8,
1.9 admin-functions.php, 1.28, 1.29 admin-header.php, 1.23,
1.24 auth.php, 1.6, 1.7 bookmarklet.php, 1.9,
1.10 categories.php, 1.31, 1.32 edit-comments.php, 1.24,
1.25 edit-form-advanced.php, 1.25, 1.26 edit-form-comment.php,
1.9, 1.10 edit-form.php, 1.22, 1.23 edit.php, 1.22,
1.23 import-b2.php, 1.10, 1.11 import-blogger.php, 1.12,
1.13 import-greymatter.php, 1.14, 1.15 import-livejournal.php,
1.4, 1.5 import-mt.php, 1.11, 1.12 import-rss.php, 1.4,
1.5 import-textpattern.php, 1.10, 1.11 index.php, 1.7,
1.8 install-helper.php, 1.2, 1.3 link-add.php, 1.12,
1.13 link-categories.php, 1.9, 1.10 link-import.php, 1.11,
1.12 link-manager.php, 1.25, 1.26 link-parse-opml.php, 1.6,
1.7 menu.php, 1.16, 1.17 moderation.php, 1.10,
1.11 optionhandler.php, 1.8, 1.9 options-discussion.php, 1.15,
1.16 options-general.php, 1.21, 1.22 options-head.php, 1.8,
1.9 options-misc.php, 1.9, 1.10 options-permalink.php, 1.33,
1.34 options-reading.php, 1.9, 1.10 options-writing.php, 1.18,
1.19 options.php, 1.23, 1.24 plugins.php, 1.11, 1.12 post.php,
1.65, 1.66 profile.php, 1.22, 1.23 quicktags.js, 1.6,
1.7 quicktags.php, 1.1, 1.2 setup-config.php, 1.2,
1.3 sidebar.php, 1.10, 1.11 templates.php, 1.19,
1.20 upgrade-functions.php, 1.58, 1.59 upload.php, 1.14,
1.15 users.php, 1.27, 1.28 wp-admin.css, 1.53, 1.54 xmlrpc.php,
1.5, 1.6
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cvs
mailing list