What is Nostr?
Kalamata Hari /
npub1d58…wmvf
2024-11-01 07:24:52
in reply to nevent1q…pl8j

Kalamata Hari on Nostr: Some bizarre code in there.<code>in_array( $inbox_message["actor"], $followers_ids ) ...

Some bizarre code in there.<code>in_array( $inbox_message["actor"], $followers_ids ) ? $from_follower = true: $from_follower = false;<br></code>

Removing the duplicated code, this is just<code>$from_follower = in_array( $inbox_message["actor"], $followers_ids ) ? true : false;<br></code>

And ... ? true : false is redundant, leaving:<code>$from_follower = in_array( $inbox_message["actor"], $followers_ids );<br></code>
Author Public Key
npub1d58c27jepmfanyu9cvvjghw2uu0auj2xf8g3lapswf590hg4q8ps9rwmvf