Skip to:
Content

bbPress.org


Ignore:
Timestamp:
02/16/2018 10:37:15 PM (8 years ago)
Author:
johnjamesjacoby
Message:

Titles: error if forum/topic/reply title is too long.

This change introduces bbp_is_title_too_long() and adds error messages to related forms if titles are too long.

Fixes #3189.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/forums/functions.php

    r6733 r6784  
    162162        }
    163163
     164        // Title too long
     165        if ( bbp_is_title_too_long( $forum_title ) ) {
     166                bbp_add_error( 'bbp_forum_title', __( '<strong>ERROR</strong>: Your title is too long.', 'bbpress' ) );
     167        }
     168
    164169        /** Forum Content *********************************************************/
    165170
     
    446451        }
    447452
     453        // Title too long
     454        if ( bbp_is_title_too_long( $forum_title ) ) {
     455                bbp_add_error( 'bbp_forum_title', __( '<strong>ERROR</strong>: Your title is too long.', 'bbpress' ) );
     456        }
     457
    448458        /** Forum Content *********************************************************/
    449459
Note: See TracChangeset for help on using the changeset viewer.