BBCode::Internal_UpdateParamsForMissingEndTag( $params )
Description
Source
File: bp-forums/admin/parser.php
2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 | function Internal_UpdateParamsForMissingEndTag(& $params ) { switch ( $this ->tag_marker) { case '[' : $tail_marker = ']' ; break ; case '<' : $tail_marker = '>' ; break ; case '{' : $tail_marker = '}' ; break ; case '(' : $tail_marker = ')' ; break ; default : $tail_marker = $this ->tag_marker; break ; } $params [ '_endtag' ] = $this ->tag_marker . '/' . $params [ '_name' ] . $tail_marker ; } |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.