Warning: strstr() [function.strstr]: Empty delimiter on line: 864
-
basically strstr(); function requires both vars to contain data so would suggest changing line 864 in buddypress/bp-core/bp-core-template.php from:
if ( !empty( $page_template ) && strstr( strtolower( $page_template ), strtolower( $component ) ) ) {to:
if ( !empty( $page_template ) && !empty( $component ) && strstr( strtolower( $page_template ), strtolower( $component ) ) ) {
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Warning: strstr() [function.strstr]: Empty delimiter on line: 864’ is closed to new replies.