Well to start with if you only want registered users to see it it needs to be moved up a bit.
{if $user_list}
<a href="{ubb url="ubb=showmembers"}">{$lang.USER_LIST}</a>
{/if}
{* LR:Mod - reason for modification - self search link *}
<a href="{ubb url="ubb=selfsearch"}">{$lang.SELF_SEARCH}</a>
Move it above the (/if) to:
{if $user_list}
<a href="{ubb url="ubb=showmembers"}">{$lang.USER_LIST}</a>
{* LR:Mod - reason for modification - self search link *}
<a href="{ubb url="ubb=selfsearch"}">{$lang.SELF_SEARCH}</a>
{/if}
Why is it blank could be several items.
Such as does the language file key self_search have any text in it so at least something shows.
Should have been added to the generic.php file
Key: SELF_SEARCH
String: Self Search.
Then the question is does the actual script work.