Skip to content
Snippets Groups Projects
Commit bd93e727 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #285116 by JeremyFrench: removed redundant argument.

parent 7174f684
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -1475,12 +1475,10 @@ function theme_tablesort_indicator($style) {
* The subject of the box.
* @param $content
* The content of the box.
* @param $region
* The region in which the box is displayed.
* @return
* A string containing the box output.
*/
function theme_box($title, $content, $region = 'main') {
function theme_box($title, $content) {
$output = '<h2 class="title">' . $title . '</h2><div>' . $content . '</div>';
return $output;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment