]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/author-template.php
Wordpress 3.3
[autoinstalls/wordpress.git] / wp-includes / author-template.php
index f082fb24c4d173281506c09cac0eed8df7b5168d..4b21e446e34502f5afc3d3eb4d36706ed9fcb3f2 100644 (file)
@@ -38,7 +38,7 @@ function get_the_author($deprecated = '') {
  * still use the old behavior will also pass the value from get_the_author().
  *
  * The normal, expected behavior of this function is to echo the author and not
- * return it. However, backwards compatiability has to be maintained.
+ * return it. However, backwards compatibility has to be maintained.
  *
  * @since 0.71
  * @see get_the_author()
@@ -385,7 +385,7 @@ function is_multi_author() {
                wp_cache_set('is_multi_author', $is_multi_author, 'posts');
        }
 
-       return (bool) $is_multi_author;
+       return apply_filters( 'is_multi_author', (bool) $is_multi_author );
 }
 
 /**