forum.flash.moe » '; $breadcrumbs_arr = category_breadcrumbs($topicInfo['cat_id'], false); foreach($breadcrumbs_arr as $breadcrumb) { $breadcrumbs .= sprintf('%s » ', $breadcrumb['cat_id'], $breadcrumb['cat_name']); } echo $breadcrumbs; $topicButtons = '
'; if(!$isLocked || $canLock) { $topicButtons .= 'Reply'; } if($canResolve) { $topicButtons .= ''. ($isResolved ? 'Reopen' : ($isFeatureReqs ? 'Mark Implemented' : 'Mark Resolved')) .''; } if($canConfirm) { $topicButtons .= ''. ($isConfirmed ? ($isFeatureReqs ? 'Revoke Accept' : 'Revoke Confirmation') : ($isFeatureReqs ? 'Accept for implementation' : 'Confirm')) .''; } if($canLock) { $topicButtons .= ''. ($isLocked ? 'Unlock' : 'Lock') .''; } $topicButtons .= '
'; ?>

This topic was locked on .
This topic was marked resolved on .
<?=($authorInfo['user_login'] ?? 'Deleted User');?>
setSafeMode(true)->text($post['post_text']);?>
#: deleted (Restore)
':username has marked this ' . ($isFeatureReqs ? 'request as implemented.' : 'topic as resolved.'), FMF_POST_TYPE_LOCKED => ':username has locked this conversation.', FMF_POST_TYPE_UNLOCKED => ':username has unlocked this conversation.', FMF_POST_TYPE_UNRESOLVED => ':username has marked this ' . ($isFeatureReqs ? 'request as unimplemented.' : 'marked this topic as unresolved.'), FMF_POST_TYPE_CONFIRMED => ':username has ' . ($isFeatureReqs ? 'marked this request for implementation.' : 'confirmed this topic.'), FMF_POST_TYPE_UNCONFIRMED => ':username has ' . ($isFeatureReqs ? 'revoked implementation confirmation for this request.' : 'revoked the confirmation from this topic.'), ]; $eventMessage = $eventMessages[$post['post_type']] ?? ':username did something.'; break; } if(isset($eventMessage)) { $eventMessage = strtr($eventMessage, [ ':user_id' => $authorInfo['user_id'] ?? 0, ':username' => $authorInfo['user_login'] ?? 'Deleted User', ]); } if(!isset($eventHtml)) { $eventHtml = sprintf( '
%s
%s
', user_gravatar($authorInfo['user_id'] ?? null, 20), ($authorInfo['user_login'] ?? 'Deleted User'), $eventMessage ?? 'Missing event description.', $post['post_id'], date('c', $post['post_created']), date(FMF_DATE_FORMAT, $post['post_created']) ); } ?>