XF 2.3 ozzmodz_gui_is_ignored

Robert9

Well-known member
I have asked Painbaker, i have written in the thread of the add-on, but there is still no solution.
Has someone any idea how to get rid of this daily error message, please?

Accessed unknown getter 'ozzmodz_gui_is_ignored' on XF:User[119417]

Somehow I think there is a wrong phrase name in another add-on, but I can not find it.
 
Found it in Moderator Tools


XML:
  <modification type="admin" template="user_edit" modification_key="pb_mt_user_edit" description="Add new button" execution_order="10" enabled="1" action="str_replace">
    <find><![CDATA[<!--[XF:actions_menu:bottom]-->]]></find>
    <replace><![CDATA[
                <xf:if is="$user.ozzmodz_gui_is_ignored">
                    <a href="{{ link('users/global-ignore/edit', $user) }}" class="menu-linkRow" data-xf-click="overlay">
                        {{ phrase('ozzmodz_gui_edit_global_ignore') }}
                    </a>
                <xf:else />
                    <a href="{{ link('users/global-ignore', $user) }}" class="menu-linkRow" data-xf-click="overlay">
                        {{ phrase('ozzmodz_gui_global_ignore') }}
                    </a>
                </xf:if>

                $0]]></replace>
  </modification>
 
Back
Top Bottom