-
Bug
-
Resolution: Fixed
-
Minor
-
3.2.9, 3.3.0
In the mcp_post.html template file, there is that code
<!-- IF S_MESSAGE_REPORTED --> <!-- IF S_MESSAGE_REPORTED --> <p class="post-notice reported"> <i class="icon fa-exclamation fa-fw icon-red" aria-hidden="true"></i><span class="sr-only">{L_TOPIC_REPORTED}</span> <a href="{U_MCP_REPORT}"><strong>{L_MESSAGE_REPORTED}</strong></a> </p> <!-- ENDIF --> |
However, the S_MESSAGE_REPORTED variable and the MESSAGE_REPORTED language string don't exist in any PHP file.
S_POST_REPORTED and L_POST_REPORTED should be used instead.
I suggest to replace that code by the following...
<!-- IF S_POST_REPORTED and not S_MCP_REPORT --> <!-- IF S_POST_REPORTED and not S_MCP_REPORT --> <p class="post-notice reported"> <i class="icon fa-exclamation fa-fw icon-red" aria-hidden="true"></i><span class="sr-only">{L_TOPIC_REPORTED}</span> <a href="{U_MCP_REPORT}"><strong>{L_POST_REPORTED}</strong></a> </p> <!-- ENDIF --> |