BBCode::FixupOutput( $string )
Description
Source
File: bp-forums/admin/parser.php
1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 | function FixupOutput( $string ) { if (! $this ->detect_urls) { $output = $this ->Internal_ProcessSmileys( $string ); } else { $chunks = $this ->Internal_AutoDetectURLs( $string ); $output = Array(); if ( count ( $chunks )) { $is_a_url = false; foreach ( $chunks as $index => $chunk ) { if (! $is_a_url ) { $chunk = $this ->Internal_ProcessSmileys( $chunk ); } $output [] = $chunk ; $is_a_url = ! $is_a_url ; } } $output = implode( "" , $output ); } return $output ; } |
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.