Quote:
Originally Posted by yoyoyoyo
thanks.
One thing that I would really like to have is a "search all template edits" option, similar to the "search all templates."
|
That has already been requested on vBulletin-Germany.org some time ago and is on the To Do-List
@Lionel
Well, adding
Code:
<if condition="$show['modcplink']">
code here
</if>
above
Code:
<if condition="$show['adminoptions']">
is actually the same as replacing
Code:
<if condition="$show['adminoptions']">
with
Code:
<if condition="$show['modcplink']">
code here
</if>
<if condition="$show['adminoptions']">
isn't it?
The first difference between the original 1st line
Code:
<if condition="$show['adminoptions']">
and the new 1st line
Code:
<if condition="$show['modcplink']">
is
So this is considered as the beginning of the modification.