Log in

View Full Version : List of Users Awaiting Email confirmation in Quick Search AdminCP


bahattab
09-21-2006, 09:06 AM
hi :)

how can i add a link for ( List of Users Awaiting Email confirmation ) in the Quick Search list in AdminCP -> Users -> Search for Users -> Quick Search.

is there any code to add ?? :confused:

what i now : i have to change someting ( user.php ) file in this line to make it work :



<li><a href=\"user.php?" . $vbulletin->session->vars['sessionurl'] . "do=find&amp;user[coppauser]=1\">" . $vbphrase['show_all_coppa_users'] . "</a></li>



but i dont know what i have to write ???

thanks
Emad Bahattab :bandit:

nico_swd
09-21-2006, 04:57 PM
Try this. (vB 3.6.0)

open /admincp/user.php

Find this piece of code. (Line 1068 approx)

<li><a href=\"user.php?" . $vbulletin->session->vars['sessionurl'] . "do=find&amp;user[coppauser]=1\">" . $vbphrase['show_all_coppa_users'] . "</a></li>


And add this line under.

<li><a href=\"user.php?" . $vbulletin->session->vars['sessionurl'] . "do=find&amp;user[usergroupid]=3\">List of Users Awaiting Email confirmation</a></li>

bahattab
09-24-2006, 10:40 AM
hi

thanks for your reply

it works but i think the " \ " is mising.

the code should be like this :

<li><a href=\"user.php?" . $vbulletin->session->vars['sessionurl'] . "do=find&amp;user[usergroupid]=3\">List of Users Awaiting Email confirmation</a></li>

thaks
regards
Emad Bahattab

nico_swd
09-24-2006, 11:11 AM
Hm, the forum takes it out. I escaped the first quote, but when it's parsed it disappears. I just hit the edit button and the slash appears in the text box... weird.