Skip to content

Commit

Permalink
Fix undefined variable 'resizable'
Browse files Browse the repository at this point in the history
I corrected the function parameter, as that was technically the incorrect spelling
  • Loading branch information
cigamit authored Feb 22, 2025
1 parent 50bc380 commit 45d0506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/html.php
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,7 @@ function html_header($header_items, $last_item_colspan = 1, $resizable = true) {
*
* @return void
*/
function html_section_header($header_item, $last_item_colspan = 1, $resizeable = true) {
function html_section_header($header_item, $last_item_colspan = 1, resizable = true) {
print "<tr class='tableHeader " . ($last_item_colspan > 1 || !$resizable ? 'tableFixed':'') . "'>";

if (is_array($header_item) && isset($header_item['display'])) {
Expand Down

0 comments on commit 45d0506

Please sign in to comment.