From 55c2291ac2a1e4397e8c2532db366b662e34a3cc Mon Sep 17 00:00:00 2001 From: "Arun S. Sekher" Date: Tue, 23 May 2017 11:46:59 +0400 Subject: [PATCH] [html] - Fix invalid html for 'Delete' and 'Move' list items in forum 'Admin Options' dropdown menu. Cleanup unclosed 'li' tag, unclosed 'a' tag, remove stray 'i' end tags in 'Delete' and 'Move' list items in the drop down menu. --- e107_plugins/forum/forum_viewforum.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_plugins/forum/forum_viewforum.php b/e107_plugins/forum/forum_viewforum.php index ec12b2dbe..97449aafb 100644 --- a/e107_plugins/forum/forum_viewforum.php +++ b/e107_plugins/forum/forum_viewforum.php @@ -999,11 +999,11 @@ function fadminoptions($thread_info) - $text .= "
  • ".LAN_DELETE." ".$tp->toGlyph('trash'); + $text .= "
  • ".LAN_DELETE." ".$tp->toGlyph('trash')."
  • "; $text .= "
  • ".$lan[$stickUnstick]." ".$icon[$stickUnstick]."
  • "; $text .= "
  • ".$lan[$lockUnlock]." ".$icon[$lockUnlock]."
  • "; - $text .= "
  • ".LAN_FORUM_2042." ".$tp->toGlyph('move')."
  • "; + $text .= "
  • ".LAN_FORUM_2042." ".$tp->toGlyph('move')."
  • "; if(e_DEVELOPER) {