i’m attempting to determine whether a member is editing their own member profile.
obvious solution is
{if logged_in_member_id == member_id}
but the parser appears to be finding and substituting the MEMBER_ID portion first, then generating a parsing error. if for example the member_id is MYNAME then it’s barfing because it ends up with
{if logged_in_MYNAME == "MYNAME"}
i imagine that exp:user:edit does a sort of primitive tag replacement which doesnt look for longer tags before shorter ones?
anyway how can i determine whether a member is editing their own profile from within exp:user:edit ?
