just downloaded the newest version, but there's a problem for me…
-
on previous version, on file class_bpfb_binder.php
there’s a line:
if ($bpfb_code) {
$content = @$_POST[‘content’] . “\n” . $bpfb_code;
$content = apply_filters(‘bp_activity_post_update_content’, $content);
$aid = $gid ?
…………where you guys told me before i could switch which content to be on the front (post content, or bpfb_code)…
but now, on new version, you have changed the code…. i have no idea how to make that happen any more…
new codes:
if ($bpfb_code) {
$content = !empty($_POST[‘content’]) ? $_POST[‘content’] : ”;
$content .= “\n{$bpfb_code}”;
$content = apply_filters(‘bp_activity_post_update_content’, $content);
$aid = $gid ?
…………===================or just :
if ($bpfb_code) {
$content .= “{$bpfb_code}\n”;
$content = !empty($_POST[‘content’]) ? $_POST[‘content’] : ”;
$content = apply_filters(‘bp_activity_post_update_content’, $content);
$aid = $gid ?
…………move $content .= “{$bpfb_code}\n”; to the front?
- The topic ‘just downloaded the newest version, but there's a problem for me…’ is closed to new replies.