summaryrefslogtreecommitdiffstats
path: root/wp-includes/general-template.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-11-07 12:37:04 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-11-07 12:37:04 +0000
commitd510632e9f07cec9ac3de3b5dafc56bd58c81b8a (patch)
treeb4944ea6ceed3a73977f9edeae40f8174a4bab29 /wp-includes/general-template.php
parent74e848ef222ada441de10e1db012988d1904b3ca (diff)
downloadwordpress-mu-d510632e9f07cec9ac3de3b5dafc56bd58c81b8a.tar.gz
wordpress-mu-d510632e9f07cec9ac3de3b5dafc56bd58c81b8a.tar.xz
wordpress-mu-d510632e9f07cec9ac3de3b5dafc56bd58c81b8a.zip
WP Merge
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@804 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes/general-template.php')
-rw-r--r--wp-includes/general-template.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php
index 0e80761..4849360 100644
--- a/wp-includes/general-template.php
+++ b/wp-includes/general-template.php
@@ -338,7 +338,7 @@ function wp_get_archives($args = '') {
$arcresults = wp_cache_get( md5('archives' . $type . $limit), 'general');
if ( !$arcresults ) {
$arcresults = $wpdb->get_results("SELECT DISTINCT YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, count(ID) as posts FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' GROUP BY YEAR(post_date), MONTH(post_date) ORDER BY post_date DESC" . $limit);
- wp_cache_set( md5('archives' . $type . $limit), $arcresults, 'general', 600 );
+ wp_cache_set( md5('archives' . $type . $limit), $arcresults, 'general', 86400 );
}
if ( $arcresults ) {
$afterafter = $after;
@@ -755,6 +755,13 @@ function noindex() {
echo "<meta name='robots' content='noindex,nofollow' />\n";
}
+function rich_edit_exists() {
+ global $wp_rich_edit_exists;
+ if ( !isset($wp_rich_edit_exists) )
+ $wp_rich_edit_exists = file_exists(ABSPATH . WPINC . '/js/tinymce/tiny_mce.js');
+ return $wp_rich_edit_exists;
+}
+
function user_can_richedit() {
$can = true;