Changeset 1140

Show
Ignore:
Timestamp:
10/30/07 17:14:19 (10 months ago)
Author:
donncha
Message:

Limit blog titles to 50 characters

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/wpmu-functions.php

    r1138 r1140  
    944944        $blog_id = sanitize_user( $blog_id ); 
    945945        $blog_title = strip_tags( $blog_title ); 
     946        $blog_title = substr( $blog_title, 0, 50 ); 
    946947 
    947948        $errors = new WP_Error();