MyBB Community Forums

Full Version: member.php help please
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hey Smile

iam using this script

http://community.mybb.com/thread-137866.html

i dont know why i get twice headler

in the top and the botum

img

http://prntscr.com/29gk7z

help me please i dont know what to do
delete duplicate content (second else code segment)

if($mybb->input['action'] == "profile_pop"){
        eval("\$profile_pop = \"".$templates->get("member_profile_pop")."\";");
        output_page($profile_pop);}
    else {
        eval("\$profile = \"".$templates->get("member_profile")."\";");
        output_page($profile);}
    }
    else {
        eval("\$profile = \"".$templates->get("member_profile")."\";");
        output_page($profile);}

change to
if($mybb->input['action'] == "profile_pop"){
        eval("\$profile_pop = \"".$templates->get("member_profile_pop")."\";");
        output_page($profile_pop);}
    else {
        eval("\$profile = \"".$templates->get("member_profile")."\";");
        output_page($profile);}
    }
ty so much man you helped me !!!!!!!!