diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index f1d51c8d71..cb31e3567a 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -2593,8 +2593,7 @@ function get_remote_file($host, $directory, $filename, &$errstr, &$errno, $port { if ($errstr) { - // convert possible localized errstr to utf8 - // $errstr = utf8_convert_message($errstr); + $errstr = utf8_convert_message($errstr); return false; } else diff --git a/phpBB/styles/subSilver/template/memberlist_search.html b/phpBB/styles/subSilver/template/memberlist_search.html index b602ab8aa6..99c509e550 100644 --- a/phpBB/styles/subSilver/template/memberlist_search.html +++ b/phpBB/styles/subSilver/template/memberlist_search.html @@ -1,34 +1,62 @@ - - + //--> +
diff --git a/phpBB/styles/subSilver/template/overall_header.html b/phpBB/styles/subSilver/template/overall_header.html index 4fb03306c2..cb7feca620 100644 --- a/phpBB/styles/subSilver/template/overall_header.html +++ b/phpBB/styles/subSilver/template/overall_header.html @@ -60,8 +60,10 @@ function find_username() return false; } -// Mark/unmark checkboxes -// id = ID of parent container, name = name prefix, state = state [true/false] +/** +* Mark/unmark checklist +* id = ID of parent container, name = name prefix, state = state [true/false] +*/ function marklist(id, name, state) { var parent = document.getElementById(id);